arbret/frontend/vitest.config.ts
2025-12-18 21:48:41 +01:00

11 lines
228 B
TypeScript

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