From 6185da96c87a4b762d35aba29eae98dd5dba749d Mon Sep 17 00:00:00 2001 From: pedro Date: Wed, 3 Apr 2024 10:31:21 +0200 Subject: [PATCH] playwright config: temp move to 1 worker --- playwright.config.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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. */