We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 340d603 commit ad37492Copy full SHA for ad37492
frontend/playwright.config.ts
@@ -1,7 +1,6 @@
1
import { defineConfig, devices } from '@playwright/test';
2
import 'dotenv/config'
3
4
-
5
/**
6
* Read environment variables from file.
7
* https://github.com/motdotla/dotenv
@@ -21,7 +20,7 @@ export default defineConfig({
21
20
/* Opt out of parallel tests on CI. */
22
workers: process.env.CI ? 1 : undefined,
23
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
24
- reporter: 'html',
+ reporter: process.env.CI ? 'blob' : 'html',
25
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
26
use: {
27
/* Base URL to use in actions like `await page.goto('/')`. */
0 commit comments