Files
wursor/vitest.config.ts
T
2026-04-23 09:39:01 +01:00

19 lines
383 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
projects: [
'packages/diff-engine',
'packages/origin-graph',
'packages/ai-layer',
'packages/agent-bridge',
],
coverage: {
provider: 'v8',
thresholds: {
// diff-engine and origin-graph have higher gates per the spec
},
},
},
});