vitest-setup.ts 119 B

123456
  1. import '@testing-library/jest-dom'
  2. import { cleanup } from '@testing-library/react'
  3. beforeEach(() => {
  4. cleanup()
  5. })