monkeytype/frontend/vitest.config.js

15 lines
289 B
JavaScript
Raw Normal View History

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
environment: "happy-dom",
globalSetup: "__tests__/global-setup.ts",
setupFiles: ["__tests__/setup-tests.ts"],
coverage: {
include: ["**/*.ts"],
},
},
});