logo logo

JavaScript Unit Testing on React Components

When writing a JavaScript application, unit testing is one of the things that come to mind when creating high quality applications. There are a lot of different definitions for a ‘unit’. According to Martin Fowler, a ‘unit’ can be whatever the development team decides it to be [1]. It can be either a class, a function or even a set of functions. JavaScript programmers use several testing frameworks like Jasmine or Mocha to test these units. In this article, I want to share my experience with unit testing React components.

In one of my recent projects I used React JavaScript framework. React is described as the following:

“A JavaScript library for building user interfaces”

-Facebook

With the library you can build reusable components to build your user interface. When I came across unit testing React components, the first thing that came up was React TestUtils. As Facebook describes, these test utilities should make it easy for the programmer to test their components with the testing framework that they choose. However, things can turn out to be different in the case of unit testing.

The test utilities can mainly be used in two ways:

1. Rendering into a JavaScript Document Object Model (DOM)

Using the renderIntoDocument functionality of these TestUtils, the component of choice gets rendered into a fake Document Object Model (DOM). It is then possible to simulate several events on the component and assert the result of the render output.

Although, there are two  main problems with this option:

  1. All child components get rendered. That way you have to deal with the behavior of child components besides the behavior of your component of choice.
  2. Access limited to the state and props of the component of choice. You want to test and track the changes of these two component properties. However, using this solution is not really possible.

Therefore, render IntoDocument is not really a solution.

2. Shallow rendering (experimental)

Using shallow rendering, it was possible to test a component without an actual DOM. Using this option only allowed me to test the render output of a component, and not ‘unit’ test the actual functions declared within the component. Also the state is not accessible, so fully testing a component was still not possible.

Conclusion

These test utilities allow you to test several things about the render output and simulate events on components, but unit testing React components properly is still not possible. The word “properly” is open for a discussion. In my case, this is a test coverage of a minimum 85%-90%.

The Solution for Unit Testing React Components

While trying to test these components, a question came to my mind multiple times: Can React classes be instantiated like constructors? The test utilities put me on the wrong track, so I tried this a lot combined with these utilities. Turned out I never needed them for unit testing.

By simply instantiating the component with the new keyword and assert the returned object was the solution to all my problems with unit testing React components. The example can be found on my GitHub page.

In a nutshell, these are the advantages of unit testing React components this way:

  • Being able to know when the state changes and what it will be, by mocking setState
  • Acting as a parent for the component, by generating mock functions and pass them down in the constructor as a property of props.
  • Call every function declared within the component without worrying about what children would do.
  • Being able to test the render output whenever you want.

Although this may seem awesome and all, it has a few minor disadvantages (it’s really minor, but still worth mentioning)

  • The render function needs to be called manually. Though this may not seem a disadvantage, when the component is updated a lot through state and props, your test may grow big.
  • The setState function of the component is not invoked by default when testing. You have to manually declare a setState function to assign the new state on the old state.

A tip for testing various render outputs is for the render function to not have any if/else statements. Instead, create functions that return a certain tree of elements (a same kind of tree that the render function returns) and put your logic for showing/hiding elements in these functions. This way you prevent doing really deep assertions of your tree, which results in more readable test code.

So that’s how it’s done. When unit testing React components, this is the way to test components, without any test utilities that React may provide.


I hope you enjoyed reading! Feel free to comment or ask a question  🙂


Leave a Reply

FacebookLinkedInTwitterEmail