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 fac34f5 commit c7f540dCopy full SHA for c7f540d
playwright.config.js
@@ -28,7 +28,7 @@ export default defineConfig({
28
/* Opt out of parallel tests on CI. */
29
workers: process.env.CI ? 1 : undefined,
30
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
31
- reporter: process.env.CI ? 'blob' : 'html',
+ reporter: process.env.CI ? [['blob', { outputFile: `./blob-report/report-${Date.now()}.zip` }]] : 'html',
32
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
33
use: {
34
/* Base URL to use in actions like `await page.goto('/')`. */
0 commit comments