mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
43 lines
1.0 KiB
Plaintext
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,
|
|
}),
|
|
};
|
|
``` |