From 145292700ba85b0ff8fe6869b9263cd977b147c1 Mon Sep 17 00:00:00 2001 From: Grace Kind Date: Sat, 18 Jul 2026 19:32:40 -0500 Subject: [PATCH] Increase e2e workers count --- playwright.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/playwright.config.js b/playwright.config.js index 0bdad219..633fdbf9 100644 --- a/playwright.config.js +++ b/playwright.config.js @@ -8,6 +8,7 @@ export default defineConfig({ testDir: "./tests/e2e/specs", outputDir: "./tests/e2e/.results", fullyParallel: true, + workers: process.env.CI ? 4 : undefined, retries: 2, use: { baseURL: "http://localhost:8081", -- 2.51.2