mike/package.json
willchen96 62da94be67 test(e2e): self-bootstrapping local Supabase stack for local runs
npm run test:e2e:local (or plain test:e2e via the webServer hook) boots
Docker-checked local Supabase, loads schema + migrations + grants, wires
backend/.env and frontend/.env.local, and raises the backend rate-limit
caps the same way CI does — a full suite run exceeds the default
300-requests/15-min general cap, after which every call 429s and the
profile/list waits time out.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-25 23:58:47 +08:00

19 lines
485 B
JSON

{
"name": "mike",
"private": true,
"scripts": {
"test:e2e": "playwright test",
"test:e2e:local": "bash scripts/e2e-local-stack.sh",
"test:e2e:headed": "playwright test --headed",
"test:e2e:ui": "playwright test --ui"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@types/node": "^22.14.1",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=22"
},
"license": "AGPL-3.0-only"
}