mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:51:19 +08:00
35 lines
822 B
Plaintext
35 lines
822 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { screen, userEvent } from '@storybook/testing-library';
|
|
|
|
import { MyComponent } from './MyComponent.component';
|
|
|
|
<Meta title="WithSelectEvent" component={MyComponent}/>
|
|
|
|
<!-- Function to emulate pausing between interactions -->
|
|
|
|
export const sleep= (ms) => {
|
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
};
|
|
|
|
<Story
|
|
name="ExampleChangeEvent"
|
|
play={ async () => {
|
|
const select = screen.getByRole('listbox');
|
|
|
|
await userEvent.selectOptions(select, ['One Item']);
|
|
await sleep(2000);
|
|
|
|
await userEvent.selectOptions(select, ['Another Item']);
|
|
await sleep(2000);
|
|
|
|
await userEvent.selectOptions(select, ['Yet another item']);
|
|
|
|
}}
|
|
render={(args) => ({
|
|
props: args,
|
|
})} />
|
|
``` |