11 lines
243 B
TypeScript
11 lines
243 B
TypeScript
|
|
import { defineConfig } from "vitest/config";
|
||
|
|
import viteConfig from "./vite.config";
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
...viteConfig,
|
||
|
|
test: {
|
||
|
|
environmentMatchGlobs: [["**/*.dom.test.{ts,tsx}", "happy-dom"]],
|
||
|
|
globals: false,
|
||
|
|
},
|
||
|
|
});
|