storybook/docs/snippets/vue/my-component-play-function-with-selectevent.ts.mdx
2022-11-17 19:18:12 +00:00

52 lines
1.4 KiB
Plaintext

```ts
// MyComponent.stories.ts
// import type { Meta, StoryObj } from '@storybook/vue3'; for Vue 3
import type { Meta, StoryObj } from '@storybook/vue';
import { userEvent, within } from '@storybook/testing-library';
import WithSelectEvent from './WithSelectEvent.vue';
const meta: Meta<typeof WithSelectEvent> = {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/7.0/vue/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'WithSelectEvent',
component: WithSelectEvent,
};
export default meta;
type Story = StoryObj<typeof WithSelectEvent>;
// Custom function to emulate a pause
function sleep(ms: number) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
/*
* See https://storybook.js.org/docs/7.0/vue/writing-stories/play-function#working-with-the-canvas
* to learn more about using the canvasElement to query the DOM
*/
export const ExampleChangeEvent: Story = {
render: () => ({
components: { WithSelectEvent },
template: '<WithSelectEvent/>',
}),
play: async ({ canvasElement }) => {
const canvas = within(canvasElement);
const select = canvas.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']);
},
};
```