Production-ready test infrastructure with Page Object Model pattern, reusable fixtures for auth/DB/test-data, and example tests covering login flow, dashboard, accounts CRUD API, and visual regression. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
57 lines
503 B
Plaintext
57 lines
503 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
secrets/
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker volumes
|
|
postgres_data/
|
|
redis_data/
|
|
pgdata/
|
|
|
|
# Database backups
|
|
backups/
|
|
*.dump
|
|
*.dump.gz
|
|
|
|
# SSL
|
|
letsencrypt/
|
|
|
|
# Coverage
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
|
|
# Playwright
|
|
/test-results/
|
|
/playwright-report/
|
|
/blob-report/
|
|
tests/.auth/
|
|
*-snapshots/
|
|
|
|
# Test environment
|
|
.env.test
|