🧪 Add testing scripts using Vitest to package.json

This commit is contained in:
2026-01-28 22:14:40 +00:00
parent 0e0b23a3a1
commit 9e8c1f12aa

View File

@@ -8,7 +8,11 @@
"build": "vite build",
"preview": "vite preview",
"oauth-proxy": "node server/oauth-proxy.js",
"dev:full": "concurrently \"npm run dev\" \"npm run oauth-proxy\""
"dev:full": "concurrently \"npm run dev\" \"npm run oauth-proxy\"",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:run": "vitest run"
},
"dependencies": {
"cors": "^2.8.5",