From b0a3c6f632b568fd37554ca6f78d5b0b120bf978 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 8 Mar 2026 11:30:30 +0000 Subject: [PATCH 1/3] Initial plan From e00378ae275c5be4861da50ad4b9ca9f338b1252 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 8 Mar 2026 11:31:27 +0000 Subject: [PATCH 2/3] fix(playwright): move HTML reporter output folder outside test-results dir Co-authored-by: Steake <530040+Steake@users.noreply.github.com> --- svelte-frontend/playwright.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/svelte-frontend/playwright.config.js b/svelte-frontend/playwright.config.js index f93971fb..4bcf7f05 100644 --- a/svelte-frontend/playwright.config.js +++ b/svelte-frontend/playwright.config.js @@ -7,8 +7,9 @@ module.exports = defineConfig({ forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 1, workers: process.env.CI ? 1 : 1, + outputDir: './test-results', reporter: [ - ['html', { outputFolder: './test-results/playwright-report' }], + ['html', { outputFolder: './playwright-report' }], ['json', { outputFile: './test-results/test-results.json' }], ['list'] ], From 7e591f2353287c6db53645b3940a59bd053e5572 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 8 Mar 2026 12:00:26 +0000 Subject: [PATCH 3/3] fix(playwright): rename HTML report output to playwright-report-output to avoid tracked file conflict Co-authored-by: Steake <530040+Steake@users.noreply.github.com> --- .gitignore | 1 + svelte-frontend/playwright.config.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 37c8f917..10f3e4c1 100644 --- a/.gitignore +++ b/.gitignore @@ -154,6 +154,7 @@ svelte-frontend/node_modules/.package-lock.json svelte-frontend/node_modules/.vite/deps/_metadata.json svelte-frontend/test-results/ svelte-frontend/playwright-report/ +svelte-frontend/playwright-report-output/ svelte-frontend/screenshots/ # Build artifacts diff --git a/svelte-frontend/playwright.config.js b/svelte-frontend/playwright.config.js index 4bcf7f05..37a6ff69 100644 --- a/svelte-frontend/playwright.config.js +++ b/svelte-frontend/playwright.config.js @@ -9,7 +9,7 @@ module.exports = defineConfig({ workers: process.env.CI ? 1 : 1, outputDir: './test-results', reporter: [ - ['html', { outputFolder: './playwright-report' }], + ['html', { outputFolder: './playwright-report-output' }], ['json', { outputFile: './test-results/test-results.json' }], ['list'] ],