Files
v2.app.gaertan.art/vitest.config.ts
2026-01-11 12:06:06 +01:00

15 lines
338 B
TypeScript

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
environment: "jsdom",
setupFiles: ["./tests/setup/vitest.setup.ts"],
include: ["tests/**/*.{test,spec}.?(c|m)[jt]s?(x)"],
css: false,
coverage: {
reporter: ["text", "html"],
reportsDirectory: "./coverage"
}
}
});