Minor grammar fix (#2881)

This commit is contained in:
mattc41190
2020-04-07 02:27:54 -05:00
committed by GitHub
parent 90316b6802
commit 12bae06313

View File

@@ -14,7 +14,7 @@ There are a few ways to test React components. Broadly, they divide into two cat
* **Rendering component trees** in a simplified test environment and asserting on their output.
* **Running a complete app** in a realistic browser environment (also known as “end-to-end” tests).
This documentation section focuses on testing strategies for the first case. While full end-to-end tests can be very useful to prevent regressions to important workflows, such tests are not concerned with React components in particular, and are out of scope of this section.
This documentation section focuses on testing strategies for the first case. While full end-to-end tests can be very useful to prevent regressions to important workflows, such tests are not concerned with React components in particular, and are out of the scope of this section.
### Tradeoffs {#tradeoffs}