test: add MVP QA gate

This commit is contained in:
vince 2026-06-18 19:41:29 +02:00
parent af09f705b1
commit 081d6085a5
10 changed files with 413 additions and 7 deletions

View file

@ -11,6 +11,9 @@
"build-storybook": "storybook build",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"test": "vitest run",
"test:unit": "vitest run",
"test:e2e": "env -u NO_COLOR playwright test",
"test:qa": "bun run check && bun run test:unit && bun run build && bun run build-storybook && bun run test:e2e",
"db:generate": "drizzle-kit generate",
"db:check": "drizzle-kit check"
},
@ -22,6 +25,8 @@
"drizzle-orm": "^0.45.2"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@playwright/test": "^1.61.0",
"@storybook/addon-a11y": "^10.4.6",
"@storybook/addon-svelte-csf": "^5.1.2",
"@storybook/addon-vitest": "^10.4.6",
@ -32,6 +37,7 @@
"@types/bun": "^1.3.14",
"@types/node": "^25.9.3",
"drizzle-kit": "^0.31.10",
"msw": "^2.14.6",
"storybook": "^10.4.6",
"svelte": "^5.56.3",
"svelte-check": "^4.6.0",