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

45 lines
1.0 KiB
Plaintext

```js
// MyComponent.stories.js
import { screen, userEvent } from '@storybook/testing-library';
import MyComponent from './MyComponent.vue';
export default {
component: MyComponent,
};
export const FirstStory = {
play: async () => {
userEvent.type(screen.getByTestId('an-element'), 'example-value');
},
render: () => ({
components: { MyComponent },
template: '<MyComponent />',
}),
};
export const SecondStory = {
play: async () => {
await userEvent.type(screen.getByTestId('other-element'), 'another value');
},
render: () => ({
components: { MyComponent },
template: '<MyComponent />',
}),
};
export const CombinedStories = {
...FirstStory,
play: async () => {
// Runs the FirstStory and Second story play function before running this story's play function
await FirstStory.play();
await SecondStory.play();
await userEvent.type(screen.getByTestId('another-element'), 'random value');
},
render: () => ({
components: { MyComponent },
template: '<MyComponent />',
}),
};
```