mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:51:19 +08:00
21 lines
646 B
Plaintext
21 lines
646 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { fireEvent, getByRole, userEvent, within } from '@storybook/testing-library'
|
|
|
|
import { MyComponent } from './MyComponent.component';
|
|
|
|
<Meta title="WithCanvasElement" component={MyComponent} />
|
|
|
|
<!--Assigns canvas to the component root element and queries the element based on it-->
|
|
|
|
<Story
|
|
name="ExampleStory"
|
|
play={async ({canvasElement}) => {
|
|
const canvas = within(canvasElement);
|
|
await userEvent.type(canvas.getByTestId('example-element'), 'something');
|
|
await fireEvent.click(canvas.getByRole('another-element'));
|
|
}} />
|
|
``` |