storybook/docs/snippets/angular/my-component-play-function-with-delay.mdx.mdx
2021-10-14 17:15:03 +01:00

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,
});
}} />
```