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

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