8 lines
207 B
JavaScript
8 lines
207 B
JavaScript
import { expect, afterEach } from "vitest"
|
|
import { cleanup } from "@testing-library/react"
|
|
import matchers from "@testing-library/jest-dom/matchers"
|
|
|
|
expect.extend(matchers)
|
|
afterEach(() => {
|
|
cleanup()
|
|
})
|