From bcb7861a04664f616c5cf15862bebbb12e4ec184 Mon Sep 17 00:00:00 2001 From: zomars Date: Fri, 2 Sep 2022 13:39:37 -0600 Subject: [PATCH] Unleash full parallel e2e power --- playwright.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/playwright.config.ts b/playwright.config.ts index 85f2d6f142..64c3c96ffc 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -38,6 +38,7 @@ const config: PlaywrightTestConfig = { workers: os.cpus().length, timeout: 60_000, maxFailures: headless ? 10 : undefined, + fullyParallel: true, reporter: [ [process.env.CI ? "github" : "list"], ["html", { outputFolder: "./test-results/reports/playwright-html-report", open: "never" }],