chore: move report into playwright

This commit is contained in:
ISA
2025-09-16 14:00:05 +02:00
parent e520207526
commit 73e9c63e36
12 changed files with 18 additions and 153 deletions

22
.gitignore vendored
View File

@@ -37,18 +37,18 @@ docs.zip
/__tests__/
# --- Playwright artifacts & test selection ---
# Ignore Playwright output folders and run metadata
/test-results/
/playwright-report/
/.last-run.json
# Ignore any Playwright traces/screenshots/videos if configured elsewhere
/traces/
/screenshots/
/videos/
# Ignore JUnit report artifacts (not used currently)
/reports/junit/
# Ignore Playwright output folders nested under playwright/
/playwright/test-results/
/playwright/playwright-report/
/playwright/.last-run.json
# If you ever enable these paths, keep them under playwright/ and ignore them
/playwright/traces/
/playwright/screenshots/
/playwright/videos/
# Ignore JUnit report artifacts under playwright/ (currently unused)
/playwright/reports/junit/
# Track only spec files under playwright/tests; ignore everything else
# Track only spec files under playwright/tests; ignore other files in that folder
/playwright/tests/**
!/playwright/tests/**/*.spec.js
!/playwright/tests/**/*.spec.ts