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