- feat(FN-2614): complete Step 4 — configure vitest test isolation setup - test(FN-2614): complete Step 3 — add isolation companion test - feat(FN-2614): complete Step 2 — add test home isolation setup
21 lines
470 B
TypeScript
21 lines
470 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
setupFiles: ["./src/__tests__/setup-test-isolation.ts"],
|
|
coverage: {
|
|
provider: "v8",
|
|
reporter: ["text", "json-summary"],
|
|
include: ["src/**/*.ts", "index.ts"],
|
|
exclude: ["src/mcp-schema-server.cjs"],
|
|
thresholds: {
|
|
lines: 92,
|
|
functions: 92,
|
|
branches: 88,
|
|
statements: 92,
|
|
},
|
|
},
|
|
},
|
|
});
|