2025SELab2-project-Dwengo/frontend/vitest.config.ts
2025-04-08 17:04:16 +00:00

35 lines
1.2 KiB
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*",
"**/tests/**",
"src/*.ts",
"src/*.vue",
"**/dist/**",
"**/e2e/**",
"**/*config*",
"**/node_modules/**",
],
thresholds: {
lines: 60,
branches: 60,
functions: 60,
statements: 60,
},
},
},
}),
);