Skip to content
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

Closed
JBudny opened this issue Nov 28, 2021 · 5 comments
Closed

Comments

@JBudny
Copy link

JBudny commented Nov 28, 2021

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:

Jest did not exit one second after the test run has completed.

Minimal repo to reproduce the issue:
https://github.com/JBudny/react-native-rtkq-testing-with-msw
ant then:

  • to see the warning:
    git checkout 8e78174
    npm test or yarn test
  • to see the workaround with manual useDispatch and useSelector:
    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.

@JBudny
Copy link
Author

JBudny commented Nov 29, 2021

I've just found out that while dispatching redux-toolkit action creators it's necessary to return the unsubscribe callback to be called in the useEffect cleanup. After doing that it looks like the workaround I mentioned above no longer works.

@JBudny
Copy link
Author

JBudny commented Dec 2, 2021

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.

@markerikson
Copy link
Collaborator

This may be related to #1762 ?

@rickyalmeidadev
Copy link

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

@JBudny
Copy link
Author

JBudny commented Jan 17, 2022

@markerikson Looks like that's what I was looking for. Thanks! 😃

I'm closing the issue as it seems to be the right answer

@JBudny JBudny closed this as completed Jan 17, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants