From 85728c36b67e9d552de8811aaad978f23df4cecf Mon Sep 17 00:00:00 2001 From: Matt Gibson Date: Mon, 26 Jan 2026 16:58:04 -0800 Subject: [PATCH] Use parallel tests in CI --- playwright.config.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/playwright.config.ts b/playwright.config.ts index 9e2e6737184..8a86279abc7 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -20,8 +20,6 @@ export default defineConfig({ forbidOnly: !!process.env.CI, /* Retry on CI only */ retries: process.env.CI ? 2 : 0, - /* Opt out of parallel tests on CI. */ - workers: process.env.CI ? 1 : undefined, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ reporter: [["html", { open: "never" }]], /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */