mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
36 lines
948 B
Plaintext
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 />",
|
|
})} />
|
|
``` |