use 2 workers for playwright tests

This commit is contained in:
Valere
2026-04-10 16:27:27 +02:00
parent fae3c4195f
commit 10efeea5a7
+1 -2
View File
@@ -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. */