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

9 lines
211 B
TypeScript

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