Skip to content

Commit fafc121

Browse files
committed
build: disable in-suite parallelization
There appears to still be some flakiness that I cannot reproduce when running `.only` on a test, which implies that there's somethhing conflicting somehow across tests running concurrently.
1 parent e5d9436 commit fafc121

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

playwright.config.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ import { defineConfig } from '@playwright/test'
55
*/
66
export default defineConfig({
77
testDir: './tests/e2e',
8-
/* Run tests in files in parallel */
9-
fullyParallel: true,
10-
/* Fail the build on CI if you accidentally left test.only in the source code. */
8+
/* Fail the build on CI if you accidentally left test.only in the source code. */
119
forbidOnly: !!process.env.CI,
1210
/* Retry on CI only */
1311
retries: process.env.CI ? 2 : 0,

0 commit comments

Comments
 (0)