From f1de0d0ef93db64d5ab47373356c9180a264c967 Mon Sep 17 00:00:00 2001 From: Mikyo King Date: Tue, 8 Oct 2024 20:40:28 -0600 Subject: [PATCH] chore: leave in concurrencly config for playwright (#4927) --- app/playwright.config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/playwright.config.ts b/app/playwright.config.ts index d8655fd076..65313f2767 100644 --- a/app/playwright.config.ts +++ b/app/playwright.config.ts @@ -21,6 +21,8 @@ export default defineConfig({ retries: process.env.CI ? 2 : 0, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ reporter: "html", + /* Opt out of parallel tests on CI. */ + // workers: process.env.CI ? 1 : undefined, /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ use: { /* Base URL to use in actions like `await page.goto('/')`. */