mapcomplete/vitest.config.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
166 B
TypeScript
Raw Normal View History

2023-02-03 04:48:32 +01:00
import { defineConfig } from "vitest/config"
export default defineConfig({
test: {
globals: true,
setupFiles: ["./test/testhooks.ts"],
},
})