Skip to content

Commit 2e63419

Browse files
committed
fix(#1349727): wrong comment in playwright config file
1 parent 14a6bc0 commit 2e63419

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

front/e2e/playwright.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default defineConfig({
77
retries: process.env.CI ? 0 : 0, // Experimental settings, update it if necessary for the CI
88
workers: process.env.CI ? 1 : 1, // We put 1 worker even for dev mode to save computer resources
99
reporter: [['list', {printSteps: true}]],
10-
timeout: process.env.CI ? 180000 : 120000, // 2min per test in local, 3min in CI
10+
timeout: process.env.CI ? 180000 : 120000, // 3min in CI per test, 2min in local
1111
use: {
1212
baseURL: process.env.SERVER_BASE_URL || 'https://gally.local',
1313
trace: 'on',
@@ -16,7 +16,7 @@ export default defineConfig({
1616
permissions: ['clipboard-read', 'clipboard-write'],
1717
},
1818
expect: {
19-
timeout: process.env.CI ? 30000 : 20000, // 20s per expect in local, 60 in CI
19+
timeout: process.env.CI ? 30000 : 20000, // 30s in CI per expect, 20s in local,
2020
},
2121
projects: [
2222
{

0 commit comments

Comments
 (0)