Files
stack/packages/mosaic/vitest.config.ts
ms-lead-reviewer 2db67ed572
All checks were successful
ci/woodpecker/pr/ci Pipeline was successful
fix(#824): enforce exact skill link ownership
2026-07-17 18:34:06 -05:00

21 lines
411 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
testTimeout: 30_000,
coverage: {
provider: 'v8',
include: ['src/commands/skill.ts'],
reporter: ['text', 'json-summary'],
thresholds: {
statements: 85,
branches: 85,
functions: 85,
lines: 85,
},
},
},
});