Add Playwright test artifacts to .gitignore

Playwright generates test-results/ and playwright-report/ directories
when running e2e tests. These should not be committed to the repository.

Added to frontend/.gitignore:
- /test-results/
- /playwright-report/
- /playwright/.cache/

https://claude.ai/code/session_01T57NPQfoRb2fS7ihdWkTxq
This commit is contained in:
Claude
2026-02-01 19:13:24 +00:00
parent 8c509d3a1b
commit 6f6dfdb67e

3
frontend/.gitignore vendored
View File

@@ -12,6 +12,9 @@
# testing
/coverage
/test-results/
/playwright-report/
/playwright/.cache/
# next.js
/.next/