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