mirror of
https://github.com/re-rxjs/react-rxjs.git
synced 2025-12-08 18:01:51 +00:00
12 lines
251 B
TypeScript
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"],
|
|
},
|
|
},
|
|
})
|