From 4c19e1ba3aec49b2db035bb368d59670daf8a095 Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Tue, 5 Nov 2024 12:33:50 +1100 Subject: [PATCH] Speed up E2E tests using fully parallel (#1429) With flaky tests / async bugs all dealt with, fullyParallel can be restored. --- playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index 27d5a1488..b068777ef 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -13,7 +13,7 @@ import { defineConfig, devices } from '@playwright/test' export default defineConfig({ testDir: './browser_tests', /* 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 */