import { render, screen } from '@testing-library/react'; import user from '@testing-library/user-event'; import { IsNotEmpty } from 'class-validator'; import React from 'react'; import { SubmitHandler, useForm } from 'react-hook-form'; import { classValidatorResolver } from '..'; class Schema { @IsNotEmpty() username: string; @IsNotEmpty() password: string; } interface Props { onSubmit: SubmitHandler; } function TestComponent({ onSubmit }: Props) { const { register, formState: { errors }, handleSubmit, } = useForm({ resolver: classValidatorResolver(Schema), }); return (
{errors.username && {errors.username.message}} {errors.password && {errors.password.message}}
); } test("form's validation with Class Validator and TypeScript's integration", async () => { const handleSubmit = vi.fn(); render(); expect(screen.queryAllByRole('alert')).toHaveLength(0); await user.click(screen.getByText(/submit/i)); expect(screen.getByText(/username should not be empty/i)).toBeInTheDocument(); expect(screen.getByText(/password should not be empty/i)).toBeInTheDocument(); expect(handleSubmit).not.toHaveBeenCalled(); });