From 40c48517515387506c4f784fe3fa553a5e4d6d29 Mon Sep 17 00:00:00 2001 From: cquinn540 Date: Sun, 8 Dec 2024 10:56:49 -0500 Subject: [PATCH] perf: make tests parallel again --- frontend/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/playwright.config.ts b/frontend/playwright.config.ts index a15f2f251..228b7031f 100644 --- a/frontend/playwright.config.ts +++ b/frontend/playwright.config.ts @@ -22,7 +22,7 @@ const ENV = (process.env.TEST_ENV || "local") as keyof typeof environments; export default defineConfig({ testDir: "./test-e2e/specs", /* Run tests in files in parallel. */ - fullyParallel: false, + fullyParallel: true, /* Fail the build on CI if you accidentally left test.only in the source code. */ forbidOnly: !!process.env.CI, /* Retry on CI only. */