From 3580af261155e3a5726d0562abd163acff1979ae Mon Sep 17 00:00:00 2001 From: "Eric J. Smith" Date: Mon, 17 Aug 2026 21:46:29 -0500 Subject: [PATCH] Run E2E tests with two workers --- src/Exceptionless.Web/ClientApp/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Exceptionless.Web/ClientApp/playwright.config.ts b/src/Exceptionless.Web/ClientApp/playwright.config.ts index 80170cf9c0..41d31c5ce6 100644 --- a/src/Exceptionless.Web/ClientApp/playwright.config.ts +++ b/src/Exceptionless.Web/ClientApp/playwright.config.ts @@ -37,5 +37,5 @@ export default defineConfig({ video: 'retain-on-failure' }, - workers: isCi ? 1 : undefined + workers: isCi ? 2 : undefined });