react-rxjs/vitest.config.ts
2023-07-29 20:56:51 +02:00

12 lines
251 B
TypeScript

import { defineConfig } from "vitest/config"
export default defineConfig({
test: {
environment: "jsdom",
globals: true, // needed for testing-library to cleanup between tests
coverage: {
reporter: ["lcov", "html"],
},
},
})