mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 05:51:07 +08:00
35 lines
1.0 KiB
Plaintext
35 lines
1.0 KiB
Plaintext
```js
|
|
// MyComponent.stories.js|jsx|ts|tsx
|
|
|
|
import { expect } from '@storybook/jest';
|
|
|
|
import { within, waitFor, userEvent } from '@storybook/testing-library';
|
|
|
|
import { YourForm } from './YourForm';
|
|
|
|
export default {
|
|
component: YourForm,
|
|
};
|
|
|
|
export const ExampleStory = {
|
|
play: async ({ args, canvasElement }) => {
|
|
// Starts querying the component from its root element
|
|
const canvas = within(canvasElement);
|
|
|
|
await userEvent.type(canvas.getByTestId('email'), 'email@email-provider.com');
|
|
await userEvent.type(canvas.getByTestId('password'), 'randompassword');
|
|
|
|
// See https://storybook.js.org/docs/7.0/react/essentials/actions#automatically-matching-args to learn how to setup logging in the Actions panel
|
|
await userEvent.click(canvas.getByTestId('submit'));
|
|
|
|
await waitFor(async () => {
|
|
await expect(args.onSubmit).toHaveBeenCalledTimes(1);
|
|
await expect(args.onSubmit).toHaveBeenCalledWith({
|
|
email: 'email@email-provider.com',
|
|
password: 'password',
|
|
});
|
|
});
|
|
},
|
|
};
|
|
```
|