🤖 Powerful asynchronous state management, server-state utilities and data fetching for the web. TS/JS, React Query, Solid Query, Svelte Query and Vue Query.
import '@testing-library/jest-dom/vitest'
import { act, cleanup as cleanupRTL } from '@testing-library/react'
import { cleanup as cleanupRRS } from '@testing-library/react-render-stream'
import { afterEach } from 'vitest'
import { notifyManager } from '@tanstack/query-core'
// https://testing-library.com/docs/react-testing-library/api#cleanup
afterEach(() => {
cleanupRTL()
cleanupRRS()
})
// Wrap notifications with act to make sure React knows about React Query updates
notifyManager.setNotifyFunction((fn) => {
act(fn)