Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
421 Bytes
import '@testing-library/jest-dom/vitest'
import { act, cleanup } from '@testing-library/react'
import { afterEach } from 'vitest'
import { notifyManager } from '@tanstack/react-query'
// https://testing-library.com/docs/react-testing-library/api#cleanup
afterEach(() => cleanup())
// Wrap notifications with act to make sure React knows about React Query updates
notifyManager.setNotifyFunction((fn) => {
act(fn)
})