edtech / apps /api /vitest.config.ts
CognxSafeTrack
chore: execute Sprint 38 technical debt resolution (Type Safety, Zod validation, Vitest, Mock LLM extracted)
d9879cf
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
setupFiles: [],
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html'],
},
testTimeout: 30000,
},
});