fbredius/storybook

View on GitHub
docs/snippets/vue/login-form-with-play-function.3.js.mdx

Summary

Maintainability
Test Coverage
```js
// LoginForm.stories.js

import { userEvent, within } from '@storybook/testing-library';

import LoginForm from './LoginForm.vue';

export default {
  /* 👇 The title prop is optional.
  * See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading
  * to learn how to generate automatic titles
  */
  title: 'Form',
  component: LoginForm,
};

const Template = (args) => ({
  components: { LoginForm },
  setup() {
    return args;
  },
  template: '<LoginForm @onSubmit="onSubmit" v-bind="args" />',
});

export const EmptyForm = Template.bind({});

export const FilledForm = Template.bind({});
FilledForm.play = async ({ canvasElement }) => {
  // Starts querying the component from its root element
  const canvas = within(canvasElement);

  await userEvent.type(canvas.getByTestId('email'), 'email@provider.com', {
    delay: 100,
  });
  await userEvent.type(canvas.getByTestId('password'), 'a-random-password', {
    delay: 100,
  });

  // See https://storybook.js.org/docs/vue/essentials/actions#automatically-matching-args to learn how to setup logging in the Actions panel
  await userEvent.click(canvas.getByRole('button'));
};
```