You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Document testing
* Update README.md
* Update README.md
* Clarify our recommendations on testing
* Okay, that was too much. :-)
* Add a few more things
By default, runs tests related to files changes since the last commit.
84
+
85
+
[Read more about testing.](template/README.md#running-tests)
86
+
79
87
### `npm run build`
80
88
81
89
Builds the app for production to the `build` folder.<br>
@@ -108,7 +116,7 @@ You can also read its latest version [here](https://github.com/facebookincubator
108
116
* Autoprefixed CSS, so you don’t need `-webkit` or other prefixes.
109
117
* A `build` script to bundle JS, CSS, and images for production, with sourcemaps.
110
118
111
-
**The feature set is intentionally limited**. It doesn’t support advanced features such as server rendering or CSS modules. Currently, it doesn’t support testing either. The tool is also **non-configurable** because it is hard to provide a cohesive experience and easy updates across a set of tools when the user can tweak anything.
119
+
**The feature set is intentionally limited**. It doesn’t support advanced features such as server rendering or CSS modules. The tool is also **non-configurable** because it is hard to provide a cohesive experience and easy updates across a set of tools when the user can tweak anything.
112
120
113
121
**You don’t have to use this.** Historically it has been easy to [gradually adopt](https://www.youtube.com/watch?v=BF58ZJ1ZQxY) React. However many people create new single-page React apps from scratch every day. We’ve heard [loud](https://medium.com/@ericclemmons/javascript-fatigue-48d4011b6fc4) and [clear](https://twitter.com/thomasfuchs/status/708675139253174273) that this process can be error-prone and tedious, especially if this is your first JavaScript build stack. This project is an attempt to figure out a good way to start developing React apps.
114
122
@@ -127,7 +135,6 @@ You don’t have to ever use `eject`. The curated feature set is suitable for sm
127
135
Some features are currently **not supported**:
128
136
129
137
* Server rendering.
130
-
* Testing.
131
138
* Some experimental syntax extensions (e.g. decorators).
132
139
* CSS Modules.
133
140
* LESS or Sass.
@@ -144,7 +151,8 @@ Currently it is a thin layer on top of many amazing community projects, such as:
144
151
*[Babel](http://babeljs.io/) with ES6 and extensions used by Facebook (JSX, [object spread](https://github.com/sebmarkbage/ecmascript-rest-spread/commits/master), [class properties](https://github.com/jeffmo/es-class-public-fields))
@@ -97,6 +109,11 @@ Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
97
109
The page will reload if you make edits.<br>
98
110
You will also see any lint errors in the console.
99
111
112
+
### `npm test`
113
+
114
+
Launches the test runner in the interactive watch mode.
115
+
See the section about [running tests](#running-tests) for more information.
116
+
100
117
### `npm run build`
101
118
102
119
Builds the app for production to the `build` folder.<br>
@@ -425,15 +442,15 @@ render() {
425
442
The above form is looking for a variable called `REACT_APP_SECRET_CODE` from the environment. In order to consume this
426
443
value, we need to have it defined in the environment:
427
444
428
-
### Windows (cmd.exe)
445
+
#### Windows (cmd.exe)
429
446
430
447
```cmd
431
448
set REACT_APP_SECRET_CODE=abcdef&&npm start
432
449
```
433
450
434
451
(Note: the lack of whitespace is intentional.)
435
452
436
-
### Linux, OS X (Bash)
453
+
#### Linux, OS X (Bash)
437
454
438
455
```bash
439
456
REACT_APP_SECRET_CODE=abcdef npm start
@@ -522,6 +539,201 @@ Then, on the server, regardless of the backend you use, you can read `index.html
522
539
523
540
If you use a Node server, you can even share the route matching logic between the client and the server. However duplicating it also works fine in simple cases.
524
541
542
+
## Running Tests
543
+
544
+
>Note: this feature is available with `react-scripts@0.3.0` and higher.
545
+
>[Read the migration guide to learn how to enable it in older projects!](https://github.com/facebookincubator/create-react-app/blob/master/CHANGELOG.md#migrating-from-023-to-030)
546
+
547
+
Create React App uses [Jest](https://facebook.github.io/jest/) as its test runner. To prepare for this integration, we did a [major revamp](https://facebook.github.io/jest/blog/2016/09/01/jest-15.html) of Jest so if you heard bad things about it, give it another try.
548
+
549
+
Jest is a Node-based runner. This means that the tests always run in a Node environment and not in a real browser. This lets us enable fast iteration speed and prevent flakiness.
550
+
551
+
While Jest provides browser globals such as `window` thanks to [jsdom](https://github.com/tmpvar/jsdom), they are only approximations of the real browser behavior. Jest is intended to be used for unit tests of your logic and your components rather than the DOM quirks.
552
+
553
+
We recommend that you use a separate tool for browser end-to-end tests if you need them. They are beyond the scope of Create React App.
554
+
555
+
### Filename Conventions
556
+
557
+
Jest will look for test files with any of the following popular naming conventions:
558
+
559
+
* Files with `.js` suffix in `__tests__` folders.
560
+
* Files with `.test.js` suffix.
561
+
* Files with `.spec.js` suffix.
562
+
563
+
The `.test.js` / `.spec.js` files (or the `__tests__` folders) can be located at any depth under the `src` top level folder.
564
+
565
+
We recommend to put the test files (or `__tests__` folders) next to the code they are testing so that relative imports appear shorter. For example, if `App.test.js` and `App.js` are in the same folder, the test just needs to `import App from './App'` instead of a long relative path.
566
+
567
+
### Command Line Interface
568
+
569
+
When you run `npm test`, Jest will launch in the watch mode. Every time you save a file, it will re-run the tests, just like `npm start` recompiles the code.
570
+
571
+
The watcher includes an interactive command-line interface with the ability to run all tests, or focus on a search pattern. It is designed this way so that you could keep it open and enjoy fast re-runs. You can learn the commands from the “Watch Usage” note that the watcher prints after every run:
By default, when you run `npm test`, Jest will only run the tests related to files changed since last commit. This is an optimization designed to make your tests runs fast regardless of how many tests you have. However it assumes that you don’t often commit the code that doesn’t pass the tests.
578
+
579
+
Jest will always explicitly mention that it only ran tests related to the files changed since the last commit. You can also press `a` in the watch mode to force Jest to run all tests.
580
+
581
+
Jest will always run all tests on a [continuous integration](#continuous-integration) server or if the project is not inside a Git or Mercurial repository.
582
+
583
+
### Writing Tests
584
+
585
+
To create tests, add `it()` blocks with the name of the test and its code. You may optionally wrap them in `describe()` blocks for logical grouping but this is neither required nor recommended.
586
+
587
+
Jest provides a built-in `expect()` global function for making assertions. A basic test could look like this:
588
+
589
+
```js
590
+
import sum from './sum';
591
+
592
+
it('sums numbers', () => {
593
+
expect(sum(1, 2)).toEqual(3);
594
+
expect(sum(2, 2)).toEqual(4);
595
+
});
596
+
```
597
+
598
+
All `expect()` matchers supported by Jest are [extensively documented here](http://facebook.github.io/jest/docs/api.html#expect-value).
599
+
You can also use [`jest.fn()` and `expect(fn).toBeCalled()`](http://facebook.github.io/jest/docs/api.html#tobecalled) to create “spies” or mock functions.
600
+
601
+
### Testing Components
602
+
603
+
There is a broad spectrum of component testing techniques. They range from a “smoke test” verifying that a component renders without throwing, to shallow rendering and testing some of the output, to full rendering and testing component lifecycle and state changes.
604
+
605
+
Different projects choose different testing tradeoffs based on how often components change, and how much logic they contain. If you haven’t decided on a testing strategy yet, we recommend that you start with creating simple smoke tests for your components:
606
+
607
+
```js
608
+
import React from 'react';
609
+
import ReactDOM from 'react-dom';
610
+
import App from './App';
611
+
612
+
it('renders without crashing', () => {
613
+
const div = document.createElement('div');
614
+
ReactDOM.render(<App />, div);
615
+
});
616
+
```
617
+
618
+
This test mounts a component and makes sure that it didn’t throw during rendering. Tests like this provide a lot value with very little effort so they are great as a starting point, and this is the test you will find in `src/App.test.js`.
619
+
620
+
When you encounter bugs caused by changing components, you will gain a deeper insight into which parts of them are worth testing in your application. This might be a good time to introduce more specific tests asserting specific expected output or behavior.
621
+
622
+
If you’d like to test components in isolation from the child components they render, we recommend using [`shallow()` rendering API](http://airbnb.io/enzyme/docs/api/shallow.html) from [Enzyme](http://airbnb.io/enzyme/). You can write a smoke test with it too:
Unlike the previous smoke test using `ReactDOM.render()`, this test only renders `<App>` and doesn’t go deeper. For example, even if `<App>` itself renders a `<Button>` that throws, this test will pass. Shallow rendering is great for isolated unit tests, but you may still want to create some full rendering tests to ensure the components integrate correctly. Enzyme supports [full rendering with `mount()`](http://airbnb.io/enzyme/docs/api/mount.html), and you can also use it for testing state changes and component lifecyle.
639
+
640
+
You can read the [Enzyme documentation](http://airbnb.io/enzyme/) for more testing techniques. Enzyme documentation uses Chai and Sinon for assertions but you don’t have to use them because Jest provides built-in `expect()` and `jest.fn()` for spies.
641
+
642
+
Here is an example from Enzyme documentation that asserts specific output, rewritten to use Jest matchers:
All Jest matchers are [extensively documented here](http://facebook.github.io/jest/docs/api.html#expect-value).
658
+
Nevertheless you can use a third-party assertion library like Chai if you want to, as described below.
659
+
660
+
### Using Third Party Assertion Libraries
661
+
662
+
We recommend that you use `expect()` for assertions and `jest.fn()` for spies. If you are having issues with them please [file those against Jest](https://github.com/facebook/jest/issues/new), and we’ll fix them. We intend to keep making them better for React, supporting, for example, [pretty-printing React elements as JSX](https://github.com/facebook/jest/pull/1566).
663
+
664
+
However, if you are used to other libraries, such as [Chai](http://chaijs.com/) and [Sinon](http://sinonjs.org/), or if you have existing code using them that you’d like to port over, you can import them normally like this:
665
+
666
+
```js
667
+
import sinon from 'sinon';
668
+
import { expect } from 'chai';
669
+
```
670
+
671
+
and then use them in your tests like you normally do.
672
+
673
+
### Coverage Reporting
674
+
675
+
Jest has an integrated coverage reporter that works well with ES6 and requires no configuration.
676
+
Run `npm test -- --coverage` (note extra `--` in the middle) to include a coverage report like this:
Note that tests run much slower with coverage so it is recommended to run it separately from your normal workflow.
681
+
682
+
### Continuous Integration
683
+
684
+
By default `npm test` runs the watcher with interactive CLI. However, you can force it to run tests once and finish the process by setting an environment variable called `CI`. Popular CI servers already set it by default but you can do this yourself too:
685
+
686
+
#### Windows (cmd.exe)
687
+
688
+
```cmd
689
+
set CI=true&&npm test
690
+
```
691
+
692
+
(Note: the lack of whitespace is intentional.)
693
+
694
+
#### Linux, OS X (Bash)
695
+
696
+
```bash
697
+
CI=true npm test
698
+
```
699
+
700
+
This way Jest will run tests once instead of launching the watcher.
701
+
702
+
If you find yourself doing this often in development, please [file an issue](https://github.com/facebookincubator/create-react-app/issues/new) to tell us about your use case because we want to make watcher the best experience and are open to changing how it works to accommodate more workflows.
703
+
704
+
### Disabling jsdom
705
+
706
+
By default, the `package.json` of the generated project looks like this:
707
+
708
+
```js
709
+
// ...
710
+
"scripts": {
711
+
// ...
712
+
"test": "react-scripts test --env=jsdom"
713
+
}
714
+
```
715
+
716
+
If you know that none of your tests depend on [jsdom](https://github.com/tmpvar/jsdom), you can safely remove `--env=jsdom`, and your tests will run faster.
717
+
To help you make up your mind, here is a list of APIs that **need jsdom**:
718
+
719
+
* Any browser globals like `window` and `document`
* [`TestUtils.renderIntoDocument()`](https://facebook.github.io/react/docs/test-utils.html#renderintodocument) ([a shortcut](https://github.com/facebook/react/blob/34761cf9a252964abfaab6faf74d473ad95d1f21/src/test/ReactTestUtils.js#L83-L91) for the above)
722
+
* [`mount()`](http://airbnb.io/enzyme/docs/api/mount.html) in [Enzyme](http://airbnb.io/enzyme/index.html)
723
+
724
+
In contrast, **jsdom is not needed** for the following APIs:
* [`shallow()`](http://airbnb.io/enzyme/docs/api/shallow.html) in [Enzyme](http://airbnb.io/enzyme/index.html)
728
+
729
+
Finally, jsdom is also not needed for [snapshot testing](http://facebook.github.io/jest/blog/2016/07/27/jest-14.html). Longer term, this is the direction we are interested in exploring, but snapshot testing is [not fully baked yet](https://github.com/facebookincubator/create-react-app/issues/372) so we don’t officially encourage its usage yet.
730
+
731
+
### Experimental Snapshot Testing
732
+
733
+
Snapshot testing is a new feature of Jest that automatically generates text snapshots of your components and saves them on the disk so if the UI output changes, you get notified without manually writing any assertions on the component output.
734
+
735
+
This feature is experimental and still [has major usage issues](https://github.com/facebookincubator/create-react-app/issues/372) so we only encourage you to use it if you like experimental technology. We intend to gradually improve it over time and eventually offer it as the default solution for testing React components, but this will take time. [Read more about snapshot testing.](http://facebook.github.io/jest/blog/2016/07/27/jest-14.html)
736
+
525
737
## Deployment
526
738
527
739
By default, Create React App produces a build assuming your app is hosted at the server root.
0 commit comments