Speed up E2E tests using fully parallel (#1429)

With flaky tests / async bugs all dealt with, fullyParallel can be restored.
This commit is contained in:
filtered
2024-11-05 12:33:50 +11:00
committed by GitHub
parent 2161ae4e5b
commit 4c19e1ba3a

View File

@@ -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 */