storybook/docs/snippets/svelte/register-component-with-play-function.js.mdx
2021-10-08 19:32:55 +01:00

43 lines
1.0 KiB
Plaintext

```js
// RegistrationForm.stories.js
// These are placeholders until the addon-interaction is out
import userEvent from '@testing-library/user-event';
import { screen } from '@testing-library/svelte';
import RegistrationForm from './RegistrationForm.svelte';
export default {
component: RegistrationForm,
//👇 Marking the onSubmit with this configuration will log the event in the Actions panel
argTypes: { onSubmit: { action: true } },
};
export const FilledForm = {
play: async () => {
const emailInput = screen.getByLabelText('email', {
selector: 'input',
});
await userEvent.type(emailInput, 'example-email@email.com', {
delay: 100,
});
const passwordInput = screen.getByLabelText('password', {
selector: 'input',
});
await userEvent.type(passwordInput, 'ExamplePassword', {
delay: 100,
});
const submitButton = screen.getByRole('button');
await fireEvent.click(submitButton);
},
render: () => ({
Component: MyComponent,
}),
};
```