Update login-form-with-play-function.js.mdx

This commit is contained in:
Jonathan Beller 2022-01-31 11:45:51 -05:00 committed by GitHub
parent 320d2d131c
commit 19b43162ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ export const EmptyForm = Template.bind({});
export const FilledForm = Template.bind({});
FilledForm.play = async ({ canvasElement }) => {
// Starts querying the component from it's root element
// Starts querying the component from its root element
const canvas = within(canvasElement);
await userEvent.type(canvas.getByTestId('email'), 'email@provider.com', {
@ -35,4 +35,4 @@ FilledForm.play = async ({ canvasElement }) => {
// See https://storybook.js.org/docs/react/essentials/actions#automatically-matching-args to learn how to setup logging in the Actions panel
await userEvent.click(canvas.getByRole('button'));
};
```
```