diff --git a/playwright.config.ts b/playwright.config.ts index 55b8ad7..d5dda26 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -18,7 +18,9 @@ export default defineConfig({ /* Retry on CI only */ retries: process.env.CI ? 2 : 0, /* Opt out of parallel tests on CI. */ - workers: process.env.CI ? 1 : undefined, + // TODO fix more than 1 worker/concurrency situation + //workers: process.env.CI ? 1 : undefined, + workers: 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. */