Fix local playwright reporter config (#3158)

* Fix local playwright reporter config

* Release notes
This commit is contained in:
Joel Jeremy Marquez
2024-07-29 12:26:51 -07:00
committed by GitHub
parent 653a0ab104
commit 77ba15f54c
2 changed files with 7 additions and 1 deletions

View File

@@ -58,7 +58,7 @@ export default defineConfig({
retries: 1,
testDir: 'e2e/',
reporter: !process.env.CI
? ['html', { open: 'never', outputFolder: 'test-results/html' }]
? [['html', { open: 'never', outputFolder: 'test-results/html' }]]
: undefined,
use: {
userAgent: 'playwright',

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [joel-jeremy]
---
Fix local plawright html reporter config.