mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +08:00
92 lines
2.9 KiB
TypeScript
92 lines
2.9 KiB
TypeScript
/* eslint-disable storybook/use-storybook-testing-library */
|
|
// @TODO: use addon-interactions and remove the rule disable above
|
|
import { ComponentStoryObj, ComponentMeta } from '@storybook/react';
|
|
import { screen } from '@testing-library/dom';
|
|
import userEvent from '@testing-library/user-event';
|
|
import { AccountForm } from './AccountForm';
|
|
|
|
export default {
|
|
// Title not needed due to CSF3 auto-title
|
|
// title: 'Demo/AccountForm',
|
|
component: AccountForm,
|
|
parameters: {
|
|
layout: 'centered',
|
|
},
|
|
} as ComponentMeta<typeof AccountForm>;
|
|
|
|
type Story = ComponentStoryObj<typeof AccountForm>;
|
|
|
|
export const Standard: Story = {
|
|
args: { passwordVerification: false },
|
|
};
|
|
|
|
export const StandardEmailFilled: Story = {
|
|
...Standard,
|
|
play: () => userEvent.type(screen.getByTestId('email'), 'michael@chromatic.com'),
|
|
};
|
|
|
|
export const StandardEmailFailed: Story = {
|
|
...Standard,
|
|
play: async () => {
|
|
await userEvent.type(screen.getByTestId('email'), 'michael@chromatic.com.com@com');
|
|
await userEvent.type(screen.getByTestId('password1'), 'testpasswordthatwontfail');
|
|
await userEvent.click(screen.getByTestId('submit'));
|
|
},
|
|
};
|
|
|
|
export const StandardPasswordFailed: Story = {
|
|
...Standard,
|
|
play: async (context) => {
|
|
await StandardEmailFilled.play(context);
|
|
await userEvent.type(screen.getByTestId('password1'), 'asdf');
|
|
await userEvent.click(screen.getByTestId('submit'));
|
|
},
|
|
};
|
|
|
|
const sleep = (ms: number) => new Promise((r) => setTimeout(r, ms));
|
|
|
|
export const StandardFailHover: Story = {
|
|
...StandardPasswordFailed,
|
|
play: async (context) => {
|
|
await StandardPasswordFailed.play(context);
|
|
await sleep(100);
|
|
await userEvent.hover(screen.getByTestId('password-error-info'));
|
|
},
|
|
};
|
|
|
|
export const Verification: ComponentStoryObj<typeof AccountForm> = {
|
|
args: { passwordVerification: true },
|
|
};
|
|
|
|
export const VerificationPasssword1: Story = {
|
|
...Verification,
|
|
play: async (context) => {
|
|
await StandardEmailFilled.play(context);
|
|
await userEvent.type(screen.getByTestId('password1'), 'asdfasdf');
|
|
await userEvent.click(screen.getByTestId('submit'));
|
|
},
|
|
};
|
|
|
|
export const VerificationPasswordMismatch: Story = {
|
|
...Verification,
|
|
play: async (context) => {
|
|
await StandardEmailFilled.play(context);
|
|
await userEvent.type(screen.getByTestId('password1'), 'asdfasdf');
|
|
await userEvent.type(screen.getByTestId('password2'), 'asdf1234');
|
|
await userEvent.click(screen.getByTestId('submit'));
|
|
},
|
|
};
|
|
|
|
export const VerificationSuccess: Story = {
|
|
...Verification,
|
|
play: async (context) => {
|
|
await StandardEmailFilled.play(context);
|
|
await sleep(1000);
|
|
await userEvent.type(screen.getByTestId('password1'), 'asdfasdf', { delay: 50 });
|
|
await sleep(1000);
|
|
await userEvent.type(screen.getByTestId('password2'), 'asdfasdf', { delay: 50 });
|
|
await sleep(1000);
|
|
await userEvent.click(screen.getByTestId('submit'));
|
|
},
|
|
};
|