-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jest warning while using the RTK Query useQuery hook in React Native project #1777
Comments
I've just found out that while dispatching redux-toolkit action creators it's necessary to return the |
For anyone having the same issue. In this specific case I ended up updating jest to the latest "^27.4.2" version and then I used: beforeEach(() => {
jest.useFakeTimers('legacy')
})
afterEach(() => {
jest.useRealTimers()
}) I'm not sure if it's the proper approach to deal with this warning, but eventually it disappeared. It may break other tests using jest fake timers utilities, because msw seems to not play nice with jest fake timers. |
This may be related to #1762 ? |
I was facing a similar issue. I fixed it by preventing the API from keeping the data when the code is running in the test environment. A code example of my solution: const api = createApi({
reducerPath: 'api',
baseQuery: fetchBaseQuery({
baseUrl: 'any-base-url',
}),
keepUnusedDataFor: process.env.NODE_ENV !== 'test' ? 60 : 0, <- here
endpoints: () => {
return {
// your endpoints
};
},
}); My answer to a related question on Stack Overflow: https://stackoverflow.com/a/70734352/15442064 |
@markerikson Looks like that's what I was looking for. Thanks! 😃 I'm closing the issue as it seems to be the right answer |
Hi,
I'm currently working on a React Native project testing template using the RTKQ and MSW library, but I stumbled upon a Jest warning. The warning happens only while testing components based on useQuery hook. The manual dispatch of the RTKQ initiate action followed by using redux useSelector hook doesn't cause the warning.
The warning:
Minimal repo to reproduce the issue:
https://github.com/JBudny/react-native-rtkq-testing-with-msw
ant then:
git checkout 8e78174
npm test
oryarn test
git checkout 838c1b2
I got the mentioned workaround from here callstack/react-native-testing-library#810.
A similar issue that I think might be helpful I've found under the other query-like library TanStack/query#1847.
I also think it might be important to mention that I use cross-fetch as I found a working setup here #1271.
The text was updated successfully, but these errors were encountered: