storybook/docs/snippets/react/my-component-play-function-composition.ts.mdx
Norbert de Langen c0240f8ec5
changes
2022-06-21 18:30:05 +02:00

40 lines
1.2 KiB
Plaintext

```ts
// MyComponent.stories.ts|tsx
import React from 'react';
import type { ComponentStoryFn, ComponentMeta } from '@storybook/react';
import { screen, userEvent } from '@storybook/testing-library';
import { MyComponent } from './MyComponent';
export default {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/eact/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'MyComponent',
component: MyComponent,
} as ComponentMeta<typeof MyComponent>;
const Template: ComponentStoryFn<typeof MyComponent> = (args) => <MyComponent {...args} />;
export const FirstStory = Template.bind({});
FirstStory.play = async () => {
await userEvent.type(screen.getByTestId('an-element'), 'example-value');
};
export const SecondStory = Template.bind({});
SecondStory.play = async () => {
await userEvent.type(screen.getByTestId('other-element'), 'another value');
};
export const CombinedStories = Template.bind({});
CombinedStories.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');
};
```