storybook/docs/snippets/angular/my-component-play-function-composition.ts.mdx
2022-07-15 11:09:15 -07:00

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');
},
};
```