diff --git a/docs/writing-tests/interaction-testing.md b/docs/writing-tests/interaction-testing.md index 9d13650d8c4..a55a0596bf6 100644 --- a/docs/writing-tests/interaction-testing.md +++ b/docs/writing-tests/interaction-testing.md @@ -171,6 +171,10 @@ Once you're ready to push your code into a pull request, you'll want to automati Interaction tests can be expensive to maintain when applied wholesale to every component. We recommend combining them with other methods like visual testing for comprehensive coverage with less maintenance work. +#### What's the difference between interaction tests and using Jest + Testing Library alone? + +Interaction tests integrate Jest and Testing Library into Storybook. The biggest benefit is the ability to view the component you're testing in a real browser. That helps you debug visually, instead of getting a dump of the (fake) DOM in the command line. You also avoid the limitations of how JSDOM mocks browser functionality. It's also more convenient to keep stories and tests together in one file than having them spread across files. + #### Learn about other UI tests - [Test runner](./test-runner.md) to automate test execution