9 lines
211 B
TypeScript
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()
|
|
})
|