cbb9f23012
Deploy to route.crispygoat.com / deploy (push) Failing after 2m3s
- playwright.config.ts: add testMatch pattern so playwright only picks up *.spec.ts (skipping tests/unit/*.test.ts which are vitest's domain). Before this, 'npx playwright test' would fail trying to run vitest tests. - .gitignore: exclude test-results/ and playwright-report/ (generated by 'npx playwright test', not source files).
49 lines
503 B
Plaintext
49 lines
503 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnp
|
|
.pnp.*
|
|
|
|
# Build outputs
|
|
.next/
|
|
out/
|
|
build/
|
|
dist/
|
|
|
|
# Package files
|
|
package-lock.json
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# Vercel
|
|
.vercel
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# Misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# Supabase
|
|
supabase/.temp/
|
|
|
|
# Playwright test results (generated, not source)
|
|
test-results/
|
|
playwright-report/
|
|
|
|
# IDE / local config
|
|
.mcp.json
|
|
.env*
|