Skip to content

Commit

Permalink
Fix typo in the User Guide (#3670)
Browse files Browse the repository at this point in the history
Replace `provide a lot value` with `provide a lot of value`.
  • Loading branch information
qbahers authored and Timer committed Jan 2, 2018
1 parent 5d7845a commit 12120f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-scripts/template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1258,7 +1258,7 @@ it('renders without crashing', () => {
});
```

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`.
This test mounts a component and makes sure that it didn’t throw during rendering. Tests like this provide a lot of 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`.

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.

Expand Down

0 comments on commit 12120f6

Please sign in to comment.