rig-task-bot/vitest.config.ts

19 lines
346 B
TypeScript
Raw Permalink Normal View History

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
coverage: {
provider: "istanbul",
reporter: ["text", "html"],
all: true,
allowExternal: true,
thresholds: {
2024-09-30 01:41:25 +00:00
lines: 100,
statements: 100,
branches: 100,
functions: 100,
},
},
},
});