mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:51:19 +08:00
24 lines
654 B
Plaintext
24 lines
654 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { screen, userEvent } from '@storybook/testing-library';
|
|
|
|
import { MyComponent } from './MyComponent.component';
|
|
|
|
<Meta title="WithDelay" component={MyComponent} />
|
|
|
|
<!-- The delay option set the ammount of milliseconds between characters being typed-->
|
|
|
|
<Story
|
|
name="DelayedStory"
|
|
play={async () => {
|
|
await userEvent.type(screen.getByTestId('example-element'), 'random string', {
|
|
delay: 100,
|
|
});
|
|
await userEvent.type(screen.getByTestId('another-example-element'), 'another random string', {
|
|
delay: 100,
|
|
});
|
|
}} />
|
|
``` |