From 10efeea5a7d6f89c9eefb563bb14ed625b4dcbcd Mon Sep 17 00:00:00 2001 From: Valere Date: Fri, 10 Apr 2026 16:27:27 +0200 Subject: [PATCH] use 2 workers for playwright tests --- playwright.config.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/playwright.config.ts b/playwright.config.ts index 4fb86b95b..dc2faf747 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -23,8 +23,7 @@ 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 : undefined, + workers: process.env.CI ? 2 : 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. */