Skip to content

Commit e00378a

Browse files
CopilotSteake
andcommitted
fix(playwright): move HTML reporter output folder outside test-results dir
Co-authored-by: Steake <530040+Steake@users.noreply.github.com>
1 parent b0a3c6f commit e00378a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

svelte-frontend/playwright.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ module.exports = defineConfig({
77
forbidOnly: !!process.env.CI,
88
retries: process.env.CI ? 2 : 1,
99
workers: process.env.CI ? 1 : 1,
10+
outputDir: './test-results',
1011
reporter: [
11-
['html', { outputFolder: './test-results/playwright-report' }],
12+
['html', { outputFolder: './playwright-report' }],
1213
['json', { outputFile: './test-results/test-results.json' }],
1314
['list']
1415
],

0 commit comments

Comments
 (0)