From a3dfd81870418a3839fffdc287415267ebec82d8 Mon Sep 17 00:00:00 2001 From: Mythie Date: Mon, 21 Apr 2025 13:27:19 +1000 Subject: [PATCH] chore: update playwright config --- packages/app-tests/playwright.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/app-tests/playwright.config.ts b/packages/app-tests/playwright.config.ts index 968ab3384..7c66d4151 100644 --- a/packages/app-tests/playwright.config.ts +++ b/packages/app-tests/playwright.config.ts @@ -18,6 +18,7 @@ export default defineConfig({ /* Run tests in files in parallel */ fullyParallel: false, workers: '50%', + maxFailures: process.env.CI ? 1 : undefined, /* Fail the build on CI if you accidentally left test.only in the source code. */ forbidOnly: !!process.env.CI, /* Retry on CI only */