mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
28 lines
765 B
Plaintext
28 lines
765 B
Plaintext
```js
|
|
// MyComponent.stories.js | MyComponent.stories.jsx | MyComponent.stories.ts | MyComponent.stories.tsx
|
|
|
|
import { screen, userEvent } from '@storybook/testing-library';
|
|
|
|
import { MyComponent } from './MyComponent.js';
|
|
|
|
export default {
|
|
component: MyComponent,
|
|
};
|
|
|
|
export const DelayedStory = {
|
|
play: async () => {
|
|
|
|
const exampleElement= screen.getByLabelText('example-element');
|
|
|
|
// The delay option set the ammount of milliseconds between characters being typed
|
|
await userEvent.type(exampleElement, 'random string', {
|
|
delay: 100,
|
|
});
|
|
|
|
const AnotherExampleElement= screen.getByLabelText('another-example-element');
|
|
await userEvent.type(AnotherExampleElement, 'another random string', {
|
|
delay: 100,
|
|
});
|
|
},
|
|
};
|
|
``` |