Merge pull request #12000 from unruthless/patch-1

[Docs] Fix grammar on testing-with-storybook.md
This commit is contained in:
jonniebigodes 2020-08-13 21:07:51 +01:00 committed by GitHub
commit 12d531d8ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,6 +14,6 @@ As you add more stories, manual testing becomes infeasible. We recommend automat
- Manual tests rely on developers to manually look at a component to verify it for correctness. They help us sanity check a components appearance as we build.
- [Unit tests](./unit-testing.md) verify that the output of a component remains the same given a fixed input. Theyre great for testing the functional qualities of a component.
- [Visual regression tests](./visual-testing.md) capturing screenshots of every story and comparing them against known baselines. Theyre great for catching UI appearance bugs.
- [Interaction tests](./interaction-testing.md) will render a story and then interact with it in the browser, asserting things about the way it renders and changes.
- [Visual regression tests](./visual-testing.md) capture screenshots of every story and compare them against known baselines. Theyre great for catching UI appearance bugs.
- [Interaction tests](./interaction-testing.md) render a story and then interact with it in the browser, asserting things about the way it renders and changes.
- [Snapshot tests](./snapshot-testing.md) compare the rendered markup of every story against known baselines. This catches markup changes that cause rendering errors and warnings.