Skip to content

Commit 28f2644

Browse files
authored
chore: re-enable playwright parallelization (#551)
We had turned this off in a blind attempt to fix flakiness. We recently *actually* fixed flakiness, which was unrelated to this.
1 parent fb65ce3 commit 28f2644

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

playwright.config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { defineConfig, devices } from '@playwright/test'
1+
import { defineConfig } from '@playwright/test'
22

33
/**
44
* See https://playwright.dev/docs/test-configuration.
@@ -7,7 +7,6 @@ export default defineConfig({
77
testDir: './tests/e2e',
88
/* Run tests in files in parallel */
99
fullyParallel: true,
10-
workers: 1,
1110
/* Fail the build on CI if you accidentally left test.only in the source code. */
1211
forbidOnly: !!process.env.CI,
1312
/* Retry on CI only */

0 commit comments

Comments
 (0)