mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
35 lines
941 B
Plaintext
35 lines
941 B
Plaintext
```js
|
|
// MyComponent.js | MyComponent.jsx | MyComponent.ts | MyComponent.tsx
|
|
|
|
// These are placeholders until the addon-interaction is out
|
|
import { screen, fireEvent } from '@testing-library/react';
|
|
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
export default {
|
|
component: MyComponent,
|
|
};
|
|
|
|
// This is a placeholder mocked sleep function to be updated once the addon-interactions is out.
|
|
function sleep(ms) {
|
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
}
|
|
|
|
// Queries the element by it's role and fires the event
|
|
|
|
export const 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' },
|
|
});
|
|
},
|
|
};
|
|
``` |