JavaScript testing #2. Introducing Enzyme and testing React components

JavaScript Testing

At the previous part of the tutorial, we’ve briefly covered the basics of unit testing. This time we will go further and start testing React with the Enzyme library. Thanks to the that, your application will be more reliable and it will be easier to avoid regression. Even though we will be using Jest here, Enzyme also works with libraries like Mocha and Chai.

JavaScript testing tutorial: the basics of Enzyme

Enzyme is a library for manipulating your React components while testing. It was developed by the company Airbnb.

Setting up Enzyme

I will go ahead and assume that you have Jest already working. If not, feel free to take a look at the previous part of the course. Let’s start with installing Enzyme

The first thing you will need to do is to create a   file. It will contain the usage of an adapter which is an additional library that allows you to use Enzyme with a specific set of React versions. I will use React 16.x, therefore I will install enzyme-adapter-react-16. For a compatibility table check out the Enzyme repo.

You can also find adapters to libraries like preact and inferno

Once you have this sorted out, the content of your   file should look like that:

setupTests.js

The last thing to do is to provide a path to this file in the package.json

package.json

And there you go, you’re all set!

Shallow rendering

The most basic usage of the Enzyme library is the shallow rendering. It allows you to render only the parent component without its children. It makes the shallow rendering not only fast but also great for unit testing. This way you won’t be testing any other components that the one that you pass to the shallow function.

App.js

App.test.js

In our simple test, we are checking if the App component contains a certain header. After running   you will see a success message.

A very important thing to remember here is that even though we are using Enzyme, our test runner is still Jest. Since we are using the expect function, you have access to a wide variety of matcher functions, that you can call. We’ve mentioned them in the first part of the course. For a list, visit the Jest documentation.

Let’s create a bit more interesting tests. To do that, we will create a brand new component.

ToDoList.js

Let’s test what happens if the provided list of tasks is empty, and what happens if it contains tasks.

ToDoList.test.js

The tests pass without problems, but we should explain a few things introduced here.

In the first test, we’ve used a   function, which is a custom matcher function. It is a part of the enzyme-matchers library. To use it with Jest, install jest-enzyme package.

The last thing to do is to import it in our setupTests file.

setupTests.js

For a list of function it provides, check out the readme. You might find it useful.

In the second test, we’ve called a   function on our component. This is thanks to the fact that the   function returns the ShallowWrapper, which is a wrapper around the rendered output. It has a set of functions that you can call on it. To check the list go to the Enzyme documentation.

Running all our tests gives us a success message!

Summary

Today we’ve learned the very basics of testing React components with Enzyme. We’ve covered installing Enzyme and running our first, simple tests. The type of rendering that we’ve used is called shallow rendering. It is called like that because it does not render any child components. It works very well when writing unit tests. In the upcoming parts of the tutorial, we will cover other types of rendering and learn how to test many different parts of our application. It will include techniques like snapshot testing and mocking data. See you next time!

Series Navigation<< JavaScript testing #1. Explaining types of tests. Basics of unit testing with JestJavaScript testing #3. Testing props, the mount function and snapshot tests. >>
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments