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

34 lines
926 B
Plaintext

```md
<!-- MyComponent.stories.mdx -->
import { Meta, Story } from '@storybook/addon-docs';
import { screen, fireEvent} from '@testing-library/react';
import { MyComponent } from './MyComponent';
<Meta title="WithSelectEvent" component={MyComponent}/>
<!-- This is a placeholder mocked sleep function to be updated once the addon-interactions is out. -->
export const sleep = (ms) => {
return new Promise((resolve) => setTimeout(resolve, ms));
}
<!-- Queries the element by it's role and fires the event -->
<Story
name="ExampleChangeEvent"
play={async () => {
const dropdown = screen.getByRole('listbox');
await fireEvent.change(dropdown, { target: { value: 'One Item'} });
await sleep(2000);
await fireEvent.change(dropdown, { target: { value: 'Another Item' } });
await sleep(2000);
await fireEvent.change(dropdown, {
target: { value: 'Yet another item' },
});
}} />
```