Deprecated Storybook addon that throws migration errors directing users to the new package structure in Storybook 9.0
86
A component library that implements a user registration form with automated interaction testing to verify form behavior and validation.
@generates
export interface RegistrationFormProps {
onSubmit?: (data: FormData) => void;
}
export interface FormData {
username: string;
email: string;
password: string;
}
export function RegistrationForm(props: RegistrationFormProps): JSX.Element;Provides testing utilities including userEvent and expect for interaction testing.
Provides the React library for building the UI component.
Install with Tessl CLI
npx tessl i tessl/npm-storybook--addon-backgroundsdocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10