Files
han-app/codebase/backend/frontend-test-site/vitest.config.ts
T

12 lines
256 B
TypeScript

import react from "@vitejs/plugin-react";
import { defineConfig } from "vitest/config";
export default defineConfig({
plugins: [react()],
test: {
environment: "jsdom",
include: ["tests/unit/**/*.test.{ts,tsx}"],
clearMocks: true,
},
});