From 41c243e9f19deefd981a1075632a2413bef5fdef Mon Sep 17 00:00:00 2001 From: Jose Olarte III Date: Fri, 15 Aug 2025 15:11:38 +0800 Subject: [PATCH] Switch to single-worker mode --- playwright.config-local.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config-local.ts b/playwright.config-local.ts index c0e78047..32b7f023 100644 --- a/playwright.config-local.ts +++ b/playwright.config-local.ts @@ -21,7 +21,7 @@ export default defineConfig({ /* Retry on CI only */ retries: process.env.CI ? 2 : 0, /* Opt out of parallel tests on CI. */ - workers: isLinuxEnvironment() ? 4 : undefined, + workers: 1, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ reporter: [ ['list'],