excalidraw/vitest.config.ts
2023-09-22 18:55:29 +05:30

17 lines
343 B
TypeScript

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
setupFiles: ["./src/setupTests.ts"],
globals: true,
environment: "jsdom",
coverage: {
reporter: ["text", "json-summary", "json", "html"],
lines: 70,
branches: 70,
functions: 68,
statements: 70,
},
},
});