mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 03:31:08 +08:00
39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
import { screen, userEvent } from '@storybook/testing-library';
|
|
|
|
import MyComponent from './MyComponent.vue';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'MyComponent',
|
|
component: MyComponent,
|
|
};
|
|
|
|
const Template = (args) => ({
|
|
components: { MyComponent },
|
|
template: '<MyComponent />',
|
|
});
|
|
|
|
export const FirstStory = Template.bind({});
|
|
FirstStory.play = async () => {
|
|
userEvent.type(screen.getByTestId('an-element'), 'example-value');
|
|
};
|
|
|
|
export const SecondStory = Template.bind({});
|
|
SecondStory.play = async () => {
|
|
await userEvent.type(screen.getByTestId('other-element'), 'another value');
|
|
};
|
|
|
|
export const CombinedStories = Template.bind({});
|
|
CombinedStories.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');
|
|
};
|
|
``` |