This repository has been archived on 2025-03-25. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
little-lemon/tests/setup.js
2023-07-29 18:32:09 -04:00

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()
})