Skip to content

Commit ad37492

Browse files
committed
♻️ Config playwright to output blob reports
1 parent 340d603 commit ad37492

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

frontend/playwright.config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { defineConfig, devices } from '@playwright/test';
22
import 'dotenv/config'
33

4-
54
/**
65
* Read environment variables from file.
76
* https://github.com/motdotla/dotenv
@@ -21,7 +20,7 @@ export default defineConfig({
2120
/* Opt out of parallel tests on CI. */
2221
workers: process.env.CI ? 1 : undefined,
2322
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
24-
reporter: 'html',
23+
reporter: process.env.CI ? 'blob' : 'html',
2524
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
2625
use: {
2726
/* Base URL to use in actions like `await page.goto('/')`. */

0 commit comments

Comments
 (0)