From d7843bb9b83c5be8bc81b155479d9ea6951b15d2 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Tue, 24 Mar 2026 09:43:31 +0100 Subject: [PATCH] Set playwright maxFailures in CI (#32878) So if you have a totally hosed EW build you're not waiting an hour to find out --- apps/web/playwright.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/web/playwright.config.ts b/apps/web/playwright.config.ts index 1b6807eb85..f6d15f4e79 100644 --- a/apps/web/playwright.config.ts +++ b/apps/web/playwright.config.ts @@ -101,6 +101,7 @@ export default defineConfig<{}, WorkerOptions>({ outputDir: "playwright/test-results", workers: 1, retries: process.env.CI ? 2 : 0, + maxFailures: process.env.CI ? 10 : undefined, reporter: process.env.CI ? [["blob"], ["github"]] : [["html", { outputFolder: "playwright/html-report" }]], snapshotDir: "playwright/snapshots", // When running the browser in docker, set the platform to `linux` as that is the platform where the browser is running