More progress

This commit is contained in:
Henry Hiles 2023-07-29 18:32:09 -04:00
parent 3d8c60ee00
commit de88224b30
19 changed files with 1249 additions and 61 deletions

8
tests/setup.js Normal file
View 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()
})