mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
23 lines
585 B
Plaintext
23 lines
585 B
Plaintext
```ts
|
|
// MyComponent.stories.ts
|
|
|
|
import { screen, userEvent } from '@storybook/testing-library';
|
|
|
|
import { MyComponent } from './MyComponent.component';
|
|
|
|
export default {
|
|
component: MyComponent,
|
|
};
|
|
|
|
export const DelayedStory = {
|
|
play: async () => {
|
|
// The delay option set the ammount of milliseconds between characters being typed
|
|
await userEvent.type(screen.getByTestId('example-element'), 'random string', {
|
|
delay: 100,
|
|
});
|
|
await userEvent.type(screen.getByTestId('another-example-element'), 'another random string', {
|
|
delay: 100,
|
|
});
|
|
},
|
|
};
|
|
``` |