11 lines
227 B
TypeScript
11 lines
227 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}"],
|
||
|
|
},
|
||
|
|
});
|