import { Schema } from '@effect/schema'; import { render, screen } from '@testing-library/react'; import user from '@testing-library/user-event'; import React from 'react'; import { useForm } from 'react-hook-form'; import { effectTsResolver } from '..'; const USERNAME_REQUIRED_MESSAGE = 'username field is required'; const PASSWORD_REQUIRED_MESSAGE = 'password field is required'; const schema = Schema.Struct({ username: Schema.String.pipe( Schema.nonEmpty({ message: () => USERNAME_REQUIRED_MESSAGE }), ), password: Schema.String.pipe( Schema.nonEmpty({ message: () => PASSWORD_REQUIRED_MESSAGE }), ), }); type FormData = Schema.Schema.Type; interface Props { onSubmit: (data: FormData) => void; } function TestComponent({ onSubmit }: Props) { const { register, handleSubmit, formState: { errors }, } = useForm({ resolver: effectTsResolver(schema), }); return (
{errors.username && {errors.username.message}} {errors.password && {errors.password.message}}
); } test("form's validation with Zod 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 field is required/i)).toBeInTheDocument(); expect(screen.getByText(/password field is required/i)).toBeInTheDocument(); expect(handleSubmit).not.toHaveBeenCalled(); });