mirror of
https://github.com/excalidraw/excalidraw.git
synced 2024-11-02 03:25:53 +01:00
10 lines
182 B
TypeScript
10 lines
182 B
TypeScript
|
import { defineConfig } from "vitest/config";
|
||
|
|
||
|
export default defineConfig({
|
||
|
test: {
|
||
|
setupFiles: ["./src/setupTests.ts"],
|
||
|
globals: true,
|
||
|
environment: "jsdom",
|
||
|
},
|
||
|
});
|