7 lines
126 B
TypeScript
7 lines
126 B
TypeScript
import { expect, afterEach } from 'vitest'
|
|
import { cleanup } from '@testing-library/react'
|
|
|
|
afterEach(() => {
|
|
cleanup()
|
|
})
|