mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 03:21:49 +08:00
33 lines
794 B
Plaintext
33 lines
794 B
Plaintext
```ts
|
|
// MyComponent.stories.ts
|
|
|
|
import { screen, userEvent } from '@storybook/testing-library';
|
|
|
|
import { MyComponent } from './MyComponent.component';
|
|
|
|
export default {
|
|
component: MyComponent,
|
|
};
|
|
|
|
export const FirstStory = {
|
|
play: async () => {
|
|
userEvent.type(screen.getByTestId('an-element'), 'example-value');
|
|
},
|
|
};
|
|
|
|
export const SecondStory = {
|
|
play: async () => {
|
|
await userEvent.type(screen.getByTestId('other-element'), 'another value');
|
|
},
|
|
};
|
|
|
|
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');
|
|
},
|
|
};
|
|
``` |