mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-04-14 16:50:04 +00:00
Co-authored-by: Pablo Fernandez <pfe@NB0240.local> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Co-authored-by: Pablo F.G <pablo.fernandez@prowler.com> Co-authored-by: David <david.copo@gmail.com>
40 lines
842 B
TypeScript
40 lines
842 B
TypeScript
import react from "@vitejs/plugin-react";
|
|
import path from "path";
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
test: {
|
|
environment: "jsdom",
|
|
globals: true,
|
|
restoreMocks: true,
|
|
mockReset: true,
|
|
unstubEnvs: true,
|
|
unstubGlobals: true,
|
|
setupFiles: ["./vitest.setup.ts"],
|
|
include: ["**/*.test.{ts,tsx}"],
|
|
exclude: [
|
|
"node_modules",
|
|
".next",
|
|
"tests/**/*", // Playwright E2E tests
|
|
],
|
|
coverage: {
|
|
provider: "v8",
|
|
reporter: ["text", "json", "html"],
|
|
exclude: [
|
|
"node_modules",
|
|
".next",
|
|
"tests/**/*",
|
|
"**/*.test.{ts,tsx}",
|
|
"vitest.config.ts",
|
|
"vitest.setup.ts",
|
|
],
|
|
},
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./"),
|
|
},
|
|
},
|
|
});
|