chore(dashboard): wire vitest into npm test script

The salvaged PR added the vitest devDep + config + a unit test but never
added a "test" script to web/package.json, so "npm run test" errored with
"Missing script: test" and the new suite was unrunnable. Add the script so
"npm run test" runs the suite as the PR body claimed (4/4 pass).
This commit is contained in:
kshitijk4poor 2026-06-19 14:50:40 +05:30
parent dc5cb0a440
commit f37bb21ff6

View file

@ -8,7 +8,8 @@
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"typecheck": "tsc -p . --noEmit"
"typecheck": "tsc -p . --noEmit",
"test": "vitest run"
},
"dependencies": {
"@nous-research/ui": "0.18.2",