storybook/docs/snippets/vue/my-component-play-function-with-delay.mdx.mdx
2021-10-08 19:32:55 +01:00

36 lines
948 B
Plaintext

```md
<!-- MyComponent.stories.mdx -->
import { Meta, Story } from '@storybook/addon-docs';
<!-- These are placeholders until the addon-interaction is out -->
import userEvent from '@testing-library/user-event';
import { screen } from '@testing-library/vue';
import MyComponent from './MyComponent.vue';
<Meta title="WithDelay" component={MyComponent} />
<!-- The delay option set the ammount of milliseconds between characters being typed-->
<Story
name="DelayedStory"
play={async () => {
const exampleElement= screen.getByLabelText('example-element');
await userEvent.type(exampleElement, 'random string', {
delay: 100,
});
const AnotherExampleElement= screen.getByLabelText('another-example-element');
await userEvent.type(AnotherExampleElement, 'another random string', {
delay: 100,
});
}}
render={() => ({
components: { MyComponent },
template: "<MyComponent />",
})} />
```