2025SELab2-project-Dwengo/frontend/vitest.config.ts
2025-04-04 18:04:14 +02:00

26 lines
903 B
TypeScript

import { fileURLToPath } from "node:url";
import { mergeConfig, defineConfig, configDefaults } from "vitest/config";
import viteConfig from "./vite.config";
export default mergeConfig(
viteConfig,
defineConfig({
test: {
environment: "jsdom",
exclude: [...configDefaults.exclude, "e2e/**"],
root: fileURLToPath(new URL("./", import.meta.url)),
coverage: {
reporter: ['text', 'json-summary', 'json'],
// If you want a coverage reports even if your tests are failing, include the reportOnFailure option
reportOnFailure: true,
exclude: ['**/*config*'],
thresholds: {
lines: 60,
branches: 60,
functions: 60,
statements: 60
},
},
},
}),
);