More progress
This commit is contained in:
parent
3d8c60ee00
commit
de88224b30
19 changed files with 1249 additions and 61 deletions
8
tests/setup.js
Normal file
8
tests/setup.js
Normal file
|
@ -0,0 +1,8 @@
|
|||
import { expect, afterEach } from "vitest"
|
||||
import { cleanup } from "@testing-library/react"
|
||||
import matchers from "@testing-library/jest-dom/matchers"
|
||||
|
||||
expect.extend(matchers)
|
||||
afterEach(() => {
|
||||
cleanup()
|
||||
})
|
Reference in a new issue