storybook/docs/snippets/svelte/my-component-play-function-composition.js.mdx
2022-07-07 19:15:02 +01:00

55 lines
1.4 KiB
Plaintext

```js
// MyComponent.stories.js
import { screen, userEvent } from '@storybook/testing-library';
import MyComponent from './MyComponent.svelte';
export default {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/7.0/svelte/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'MyComponent',
component: MyComponent,
};
/*
*👇 Render functions are a framework specific feature to allow you control on how the component renders.
* See https://storybook.js.org/docs/7.0/svelte/api/csf
* to learn how to use render functions.
*/
export const FirstStory = {
render: (args) => ({
Component: MyComponent,
props: args,
}),
play: async () => {
userEvent.type(screen.getByTestId('an-element'), 'example-value');
},
};
export const SecondStory = {
render: (args) => ({
Component: MyComponent,
props: args,
}),
play: async () => {
await userEvent.type(screen.getByTestId('other-element'), 'another value');
},
};
export const CombinedStories = {
render: (args) => ({
Component: MyComponent,
props: args,
}),
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');
},
};
```