storybook/docs/snippets/vue/form-story-component-with-play-function.2.js.mdx
2021-10-25 19:46:51 +01:00

29 lines
878 B
Plaintext

```js
// Form.stories.js
import { userEvent, within } from '@storybook/testing-library';
import LoginForm from './LoginForm.vue';
export default {
component: LoginForm,
};
export const FilledForm = {
play: async ({ args, canvasElement }) => {
// Starts querying the component from it's root element
const canvas = within(canvasElement);
await userEvent.type(canvas.getByTestId('email'), 'email');
await userEvent.type(canvas.getByTestId('password'), 'password');
// See https://storybook.js.org/docs/7.0/vue/essentials/actions#automatically-matching-args to learn how to setup logging in the Actions panel
await userEvent.click(canvas.getByRole('button'));
},
render: (args, { argTypes }) => ({
components: { LoginForm },
props: Object.keys(argTypes),
template: '<LoginForm @onSubmit="onSubmit" v-bind="$props"/>',
}),
};
```