Skip to content

Commit c5758d3

Browse files
author
Gideon
committed
FIX: Fix playwright config issue.
1 parent 625785a commit c5758d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/playwright.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ module.exports = defineConfig({
55
testDir: './tests/e2e',
66
fullyParallel: true,
77
forbidOnly: !!process.env.CI,
8-
retries: process.env.CI ? process.env.CI : 0,
9-
workers: process.env.CI ? process.env.CI : 1,
8+
retries: process.env.CI ? 2 : 0,
9+
workers: process.env.CI ? 1 : undefined,
1010
reporter: 'html',
1111

1212
projects: [

0 commit comments

Comments
 (0)