mirror of
https://github.com/willchen96/mike.git
synced 2026-07-26 23:51:08 +02:00
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>
19 lines
485 B
JSON
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"
|
|
}
|