Commit 12120f6f authored by Quentin Bahers's avatar Quentin Bahers Committed by Joe Haddad
Browse files

Fix typo in the User Guide (#3670)

Replace `provide a lot value` with `provide a lot of value`.
parent 5d7845a7
Showing with 1 addition and 1 deletion
+1 -1
...@@ -1258,7 +1258,7 @@ it('renders without crashing', () => { ...@@ -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. 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.
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment