diff --git a/playwright.config.ts b/playwright.config.ts index 44ed1578..7f3ed133 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -17,8 +17,8 @@ export default defineConfig({ forbidOnly: !!process.env.CI, /* Retry on CI only */ retries: process.env.CI ? 2 : 0, - /* Opt out of parallel tests on CI. */ - workers: process.env.CI ? 1 : 1, + /* Opt out of parallel tests on CI. Max 6, only 6 test account present */ + workers: process.env.CI ? 1 : undefined, /* 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. */