Files
Arkie-Library-Frontend/vitest.config.ts
TerryM 1c1ef4801b
All checks were successful
Deploy to Frontend Servers / deploy (push) Successful in 1m0s
test: switch vitest to happy-dom
2026-05-16 21:01:41 +08:00

12 lines
245 B
TypeScript

import { defineConfig } from "vitest/config";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
test: {
environment: "happy-dom",
setupFiles: "./src/test/setup.ts",
css: false,
},
});