chore: gitignore playwright Artefakte ignorieren und nur Test Datei annehmen

This commit is contained in:
ISA
2025-09-16 12:28:10 +02:00
parent 5b86d5293b
commit cdfdd3d6cf
11 changed files with 72 additions and 11 deletions

15
.gitignore vendored
View File

@@ -35,3 +35,18 @@ docs.zip
/mockData/
/__mocks__/
/__tests__/
# --- Playwright artifacts & selective test tracking ---
# Ignore Playwright output folders and run metadata
/test-results/
/playwright-report/
/.last-run.json
# Optional: ignore JUnit report artifacts if not needed in VCS
/reports/junit/
# Ignore all Playwright tests by default, keep only the main spec
/playwright/tests/**
!/playwright/tests/mapcomponent.spec.js
# Ignore Playwright cache if present
/playwright/.cache/