mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-10 00:12:22 +08:00
40 lines
1.0 KiB
Plaintext
40 lines
1.0 KiB
Plaintext
```ts
|
|
// MyComponent.stories.ts
|
|
|
|
import type { Meta, Story } from '@storybook/angular';
|
|
|
|
import { screen, userEvent } from '@storybook/testing-library';
|
|
|
|
import { MyComponent } from './MyComponent.component';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/7.0/angular/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'MyComponent',
|
|
component: MyComponent,
|
|
} as Meta;
|
|
|
|
export const FirstStory: Story = {
|
|
play: async () => {
|
|
userEvent.type(screen.getByTestId('an-element'), 'example-value');
|
|
},
|
|
};
|
|
|
|
export const SecondStory: Story = {
|
|
play: async () => {
|
|
await userEvent.type(screen.getByTestId('other-element'), 'another value');
|
|
},
|
|
};
|
|
|
|
export const CombinedStories: Story = {
|
|
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');
|
|
},
|
|
};
|
|
```
|