mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
- Newline following filename comment - Fix URLs in comments - Ensure consistent usage of `ts` vs `tsx` language
27 lines
680 B
Plaintext
27 lines
680 B
Plaintext
```ts
|
|
// MyComponent.stories.ts
|
|
|
|
import { userEvent, within } from '@storybook/testing-library';
|
|
|
|
import type { Meta, StoryObj } from '@storybook/web-components';
|
|
|
|
const meta: Meta = {
|
|
title: 'WithCanvasElement',
|
|
component: 'demo-my-component',
|
|
};
|
|
export default meta;
|
|
|
|
type Story = StoryObj;
|
|
|
|
export const ExampleStory: Story = {
|
|
play: async ({ canvasElement }) => {
|
|
// Assigns canvas to the component root element
|
|
const canvas = within(canvasElement);
|
|
|
|
// Starts querying from the component's root element
|
|
await userEvent.type(canvas.getByTestId('example-element'), 'something');
|
|
await userEvent.click(canvas.getByRole('another-element'));
|
|
},
|
|
};
|
|
```
|