test: add test infrastructure for frontend and server

- Frontend: vitest.config.ts with vue plugin + jsdom, dummy component test
- Server: in-memory SQLite test DB factory + Hono testClient helper + smoke test
- CI: add pnpm audit and server coverage threshold steps
- Root: vitest workspace config for multi-project test discovery

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Dorian
2026-03-12 22:30:43 +00:00
co-authored by Claude Opus 4.6
parent 6f0eb92ebb
commit d9e32123fe
11 changed files with 997 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
import { defineWorkspace } from 'vitest/config'
export default defineWorkspace([
{
test: {
name: 'server',
include: ['server/src/**/*.test.ts'],
},
},
'frontend/vitest.config.ts',
])