remove playwright parallel, but run macos and ubuntu at the same time (#1617)

* remove playwright parallel, but run macos and ubuntu at the same time

* better logging for cam test

* skip a test for safari

* remove steps
This commit is contained in:
Kurt Hutten
2024-03-04 12:18:56 +11:00
committed by GitHub
parent 6406e27794
commit 61e2a1eddc
3 changed files with 16 additions and 14 deletions

View File

@ -18,7 +18,7 @@ export default defineConfig({
/* Retry on CI only */
retries: process.env.CI ? 3 : 0,
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 2 : 1,
workers: process.env.CI ? 1 : 1,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: 'html',
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */