import React from 'react' import { render } from '@toptal/picasso-test-utils' import { FormCompound as Form } from '../FormCompound' import { NumberInput, type Props } from './NumberInput' const numberInputMock = jest.fn() jest.mock('@toptal/picasso-number-input', () => ({ ...jest.requireActual('@toptal/picasso-number-input'), NumberInput: (props: any) => numberInputMock(props), })) const renderFormWithNumberInput = (props: Props) => render(
{}}>
) describe('Form.NumberInput', () => { describe('when "min" and "max" props are provided', () => { it('passes them to NumberInput', () => { renderFormWithNumberInput({ min: '8', max: '12', name: 'test-input', }) expect(numberInputMock).toHaveBeenCalledTimes(1) expect(numberInputMock).toHaveBeenCalledWith( expect.objectContaining({ min: '8', max: '12', name: 'test-input', }) ) }) }) })