xref: /expo/docs/pages/develop/unit-testing.mdx (revision 1df2ec8a)
1---
2title: Unit testing
3description: Learn how to set up and configure the jest-expo package to write unit tests and snapshot tests for a project.
4---
5
6import { Terminal } from '~/ui/components/Snippet';
7import { BoxLink } from '~/ui/components/BoxLink';
8import { FileTree } from "~/ui/components/FileTree";
9
10[Jest](https://jestjs.io) is the most widely used JavaScript unit testing framework. In this guide, you'll learn how to set up Jest in your project, write a unit test, write a snapshot test, and best practices for structuring your tests when using Jest with React Native.
11
12You'll also use the `jest-expo` package which is a Jest preset and mocks the native part of the Expo SDK and handles most of the configuration.
13
14## Installation
15
16To install a compatible version of `jest-expo` for your project, run the following command:
17
18<Terminal cmd={['$ npx expo install jest-expo jest']} />
19
20Then, update **package.json** to include:
21
22```json package.json
23"scripts": {
24  ...
25  "test": "jest"
26},
27"jest": {
28  "preset": "jest-expo"
29}
30```
31
32You can now start writing Jest tests.
33
34## Configuration
35
36A starting configuration you can use is to make sure any modules you are using within the **node_modules** directory are transpiled when running Jest. This can be done by including the [`transformIgnorePatterns`](https://jestjs.io/docs/configuration#transformignorepatterns-arraystring) property that takes a regex pattern as its value:
37
38```json package.json
39"jest": {
40  "preset": "jest-expo",
41  "transformIgnorePatterns": [
42    "node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg)"
43  ]
44}
45```
46
47The above configuration should cover the majority of your needs, however, you can always add to this pattern list.
48
49Jest comes with a lot of configuration options. For more details, see [Configuring Jest](https://jestjs.io/docs/configuration).
50
51## Unit test
52
53A unit test is used to check the smallest unit of code, usually a function.
54
55To write your first unit test, start by writing a simple test for **App.js**. Create a test file for it and call it **App.test.js**. Jest identifies a file with the **.test.js** extension as a test and includes it in the tests queue. There are also other ways to [structure a test](#structure-your-tests).
56
57The test will expect the state of the `<App />` component to have one child element:
58
59```js App.test.js
60import React from 'react';
61import renderer from 'react-test-renderer';
62
63import App from './App';
64
65describe('<App />', () => {
66  it('has 1 child', () => {
67    const tree = renderer.create(<App />).toJSON();
68    expect(tree.children.length).toBe(1);
69  });
70});
71```
72
73To run the test:
74
75<Terminal cmd={['$ npm run test']} />
76
77If everything goes well, you should see the one test passed. For more information, see [expect and conditional matchers](https://jestjs.io/docs/en/expect).
78
79## Structure your tests
80
81Right now, you have a single test file in the project directory. Adding more test files can make it hard to organize your project directory. The easiest way to avoid this is to create a **\_\_tests\_\_** directory and put all your tests inside it.
82
83An example structure is shown below:
84
85<FileTree files={[
86  '__tests__/components/button.test.js',
87  '__tests__/navigation/mainstack.test.js',
88  '__tests__/screens/home.test.js',
89  'src/components/button.js',
90  'src/navigation/mainstack.js',
91  'src/screens/home.js'
92]}/>
93
94However, this approach causes a lot of long import paths, such as `../../src/components/button`.
95
96Alternatively, you can have multiple **\_\_tests\_\_** sub-directories for different areas of your project. For example, create a separate test directory for **components**, **navigation**, and so on:
97
98<FileTree files={[
99  'src/components/button.js',
100  'src/components/__tests__/button.test.js'
101]}/>
102
103Now, if you move **\_\_tests\_\_** within the **components** directory, the import path of `<Button>` in the the **button.test.js** will be `../button`.
104
105Another option for test/file structure:
106
107<FileTree files={[
108  'src/components/button.js',
109  'src/components/button.style.js',
110  'src/components/button.test.js',
111]}/>
112
113It's all about preferences and up to you to decide how you want to organize your project directory.
114
115## Snapshot test
116
117A snapshot test is used to make sure that UI stays consistent, especially when a project is working with global styles that are potentially shared across components. For more information, see [snapshot testing](https://jestjs.io/docs/en/snapshot-testing).
118
119To add a snapshot test for `<App />`, add the following code snippet in the `describe()` in **App.test.js**:
120
121```js App.test.js
122it('renders correctly', () => {
123  const tree = renderer.create(<App />).toJSON();
124  expect(tree).toMatchSnapshot();
125});
126```
127
128Run `npm run test` command, and if everything goes well, you should see a snapshot created and two tests passed.
129
130## Code coverage reports
131
132Code coverage reports can help you understand how much of your code is tested.
133
134If you'd like to see code coverage report in your project using the HTML format, add the following to the **package.json**:
135
136```json package.json
137"jest": {
138  ...
139  "collectCoverage": true,
140  "collectCoverageFrom": [
141    "**/*.{js,jsx}",
142    "!**/coverage/**",
143    "!**/node_modules/**",
144    "!**/babel.config.js",
145    "!**/jest.setup.js"
146  ]
147}
148```
149
150Adding the above snippet allows Jest to collect coverage of all **.js** and **.jsx** files that are not inside the **coverage** or **node_modules** directories. It also excludes the **babel.config.js** and **jest.setup.js** files. You can add or remove more to this list to match your needs.
151
152Run `npm run test`. You should see a **coverage** directory created in your project. Find the **index.html** file within this directory and double-click to open it up in a browser to see the coverage report.
153
154> Usually, we don't recommend uploading **index.html** file to git. To prevent it from being tracked, you can add `coverage/**/*` in the **.gitignore** file.
155
156## Optional: Jest flows
157
158You can also use different flows to run your tests. Below are a few example scripts that you can try:
159
160```json package.json
161"scripts": {
162  ...
163  // active development of tests, watch files for changes and re-runs all tests
164  "test": "jest --watch --coverage=false --changedSince=origin/main",
165
166  // debug, console.logs and only re-runs the file that was changed
167  "testDebug": "jest -o --watch --coverage=false",
168
169  // displays code coverage in cli and updates the code coverage html
170  "testFinal": "jest",
171
172  // when a screen/component is updated, the test snapshots will throw an error, this updates them
173  "updateSnapshots": "jest -u --coverage=false"
174}
175```
176
177For more information, see [CLI Options](https://jestjs.io/docs/en/cli) in Jest documentation.
178
179## Next step
180
181<BoxLink
182  title="React Native Testing library"
183  description="You can also use React Native Testing Library which provides testing utilities that encourage good testing practices and works with Jest."
184  href="https://github.com/callstack/react-native-testing-library"
185/>
186