Skip to content

Commit 8bbc8f7

Browse files
committed
Update Playwright Config
1 parent 3f75cf0 commit 8bbc8f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default defineConfig({
2222
/* Opt out of parallel tests on CI. */
2323
workers: process.env.CI ? 1 : undefined,
2424
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
25-
reporter: 'html',
25+
reporter: process.env.CI ? 'blob' : 'html',
2626
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
2727
use: {
2828
/* Base URL to use in actions like `await page.goto('/')`. */

0 commit comments

Comments
 (0)