storybook/docs/workflows/interaction-testing.md

20 lines
807 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: 'Interaction testing with Storybook'
---
Stories are useful for verifying the known states of a component. But sometimes you need to test how a component changes in response to user interaction.
Stories are convenient **starting points** and **harnesses** for interaction tests using end-to-end tools like [Enzyme](https://enzymejs.github.io/enzyme/) and [Cypress](https://www.cypress.io/).
Luckily, this is straightforward. Point your interaction testing tool at Storybooks isolated iframe [URL for a specific story](../configure/sidebar-and-urls.md#permalinking-to-stories) then execute the test script as usual. Heres an example using Cypress:
<!-- prettier-ignore-start -->
<CodeSnippets
paths={[
'common/component-cypress-test.js.mdx',
]}
/>
<!-- prettier-ignore-end -->