mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-03-21 18:58:04 +00:00
36 lines
750 B
TypeScript
36 lines
750 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,
|
|
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, "./"),
|
|
},
|
|
},
|
|
});
|