mirror of
https://github.com/joinmarket-webui/jam.git
synced 2026-08-13 12:33:26 +02:00
9 lines
214 B
TypeScript
9 lines
214 B
TypeScript
import * as matchers from '@testing-library/jest-dom/matchers'
|
|
import { cleanup } from '@testing-library/react'
|
|
import { expect, afterEach } from 'vitest'
|
|
|
|
expect.extend(matchers)
|
|
|
|
afterEach(() => {
|
|
cleanup()
|
|
})
|