Files
zopu-code/repos/effect/packages/atom/react/vitest.setup.ts

9 lines
209 B
TypeScript

// oxlint-disable-next-line no-unassigned-import
import "@testing-library/jest-dom/vitest"
import { cleanup } from "@testing-library/react"
import { afterEach } from "vitest"
afterEach(() => {
cleanup()
})