Skip to content

Commit 58fd983

Browse files
committed
Drop workers to 2
1 parent 0cdc858 commit 58fd983

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default defineConfig({
1919
/* Retry on CI only */
2020
retries: process.env.CI ? 2 : 0,
2121
/* Opt out of parallel tests. */
22-
workers: 4,
22+
workers: process.env.CI ? 2 : 4,
2323
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
2424
reporter: 'html',
2525
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */

0 commit comments

Comments
 (0)