Skip to content

Commit 3dca2e2

Browse files
committedApr 20, 2025··
Fix playwright reporter config
1 parent 3b103c8 commit 3dca2e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎spock-website/playwright.config.ts

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

33
export default defineConfig({
4-
reporter: process.env.CI ? ['github', 'html'] : 'html',
4+
reporter: process.env.CI ? [['github'], ['html']] : [['html'], ['list']],
55
// Configure projects for major browsers.
66
projects: [
77
{

0 commit comments

Comments
 (0)
Please sign in to comment.