gwen-abalise/vitest.config.ts
Naomi Carrigan 5fc6d664e4
Some checks failed
Node.js CI / Lint and Test (push) Has been cancelled
feat: initial prototype
2025-02-23 19:45:53 -08:00

16 lines
272 B
TypeScript

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
coverage: {
provider: "istanbul",
reporter: ["text", "html"],
all: true,
allowExternal: true,
thresholds: {
lines: 0,
},
},
},
});