Skip to content

Commit c6c45c8

Browse files
committed
pipe stdout in ci test
1 parent b55be28 commit c6c45c8

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

testing/e2e/playwright.config.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ export default defineConfig({
7272
signal: 'SIGINT',
7373
timeout: 1000
7474
},
75+
stderr: 'pipe',
76+
stdout: process.env.CI ? 'pipe' : 'ignore',
7577
timeout: 10_000,
7678
url: `http://localhost:${apiPort}`
7779
},
@@ -82,6 +84,8 @@ export default defineConfig({
8284
signal: 'SIGINT',
8385
timeout: 1000
8486
},
87+
stderr: 'pipe',
88+
stdout: process.env.CI ? 'pipe' : 'ignore',
8589
timeout: 10_000,
8690
url: `http://localhost:${gatewayPort}/api/healthcheck`
8791
},
@@ -92,6 +96,8 @@ export default defineConfig({
9296
signal: 'SIGINT',
9397
timeout: 1000
9498
},
99+
stderr: 'pipe',
100+
stdout: process.env.CI ? 'pipe' : 'ignore',
95101
timeout: 10_000,
96102
url: `http://localhost:${webPort}`
97103
}

0 commit comments

Comments
 (0)