mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
44 lines
1.0 KiB
Plaintext
44 lines
1.0 KiB
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
// These are placeholders until the addon-interaction is out
|
|
import userEvent from '@testing-library/user-event';
|
|
import { screen } from '@testing-library/svelte';
|
|
|
|
import MyComponent from './MyComponent.svelte';
|
|
|
|
export default {
|
|
component: MyComponent,
|
|
};
|
|
|
|
export const FirstStory = {
|
|
play: async () => {
|
|
userEvent.type(screen.getByTestId('an-element'), 'example-value');
|
|
},
|
|
render: () => ({
|
|
Component: MyComponent,
|
|
}),
|
|
};
|
|
|
|
export const SecondStory = {
|
|
play: async () => {
|
|
await userEvent.type(screen.getByTestId('other-element'), 'another value');
|
|
},
|
|
render: () => ({
|
|
component: 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: () => ({
|
|
component: MyComponent,
|
|
}),
|
|
};
|
|
``` |