1. 22
    Using React Testing Library's waitFor Method to Test Asynchronous Behavior
    2m 24s

Using React Testing Library's waitFor Method to Test Asynchronous Behavior

Jamund Ferguson
InstructorJamund Ferguson
Share this video with your friends

Social Share Links

Send Tweet
Published 3 years ago
Updated 2 years ago

The async method waitFor is helpful when you need to wait for an async response of some kind in your test. It's particularly helpful the way we use it here, alongside a jest spy, where we can hold off until we know that an API response has been sent before continuing with our testing.

The waitFor method will run your callback immediately and then every 50ms until the timeout at 1000ms. If you return a promise in your callback, it will simply wait for your promise to be resolved (up until the timeout).

In some cases we can avoid waitFor if we use preloadedState, but that's not really possible for our products, because our <Product> component's useEffect hook always tries to load new products, even if they're already in our our store. You could imagine an implementation that checked if products already existed before calling our API, but that wasn't used here.


Testing Library has a section called Async Methods that covers all of the details around waitFor and findBy.

Instructor: For this next lesson, we're going to be testing our products component. Go ahead and play around with this in a browser to make sure you understand all the functionality that needs to be tested. Open up products.test.tsx.

At the top of the file, import screen and waitfor from @testinglibrary/react. Now we need to import star as API from ../app/API, and import mock products from public/products.JSON. Just above our test, we're going to type const getProducts spy = jest.spy on.

We'll pass in our API and the getProducts method is the one that we want to spy on. Then we can type, getProducts spy.mock resolved value, and then we can pass in mock products. To explain what this is going to do, Jest is going to spy on our API.

Any time you call API.getProducts anywhere in the code we execute here, it's going to notice that.

We can use that to check how many times it was called. We can also use it to override the value. Here we're overriding a function for getProducts, with one that returns all the products in our products.JSON file.

Now in products.tsx, when we call getProducts here, it should actually have products for us to use. We'll leave our debug there for now. Then we'll type await waitfor, we're going to pass in a function that says expect getProducts spy.two have been called times one.

For that to work, we need to make this an async function and we'll put a debug below this as well. Now let's run our tests. We should see two debug outputs here. At first, we have the initial one with no products.

Then after we wait for getProductsBy to have been called, we can see that all the products now exist. Let's get rid of our debug statements now. We'll say, const articles = screen.getAllByRoll article.

That just happens to be the tag that I use for each of these products article tag here. We can say, expect articles.length.two = mock products.length. We should have the same number of articles in the page as we have mock products in our JSON file.

We have no more need for our debug statement, we can get rid of that. Let's rename our test. Several products should be listed.

egghead
egghead
~ 6 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today