I am using useFormContext in one the child component. this is the code for it:
const { register } = useFormContext<CustomerProfileFormData>();
How can I Mock useFormContext so that I can test child component. this is the test
it('should render properly', () => {
render(<AddressDetails isEdit={false} />);
expect(screen.getByTestId('address-details')).toBeInTheDocument();
});
I am getting this error TypeError: Cannot destructure property 'register' of '(0 , _reactHookForm.useFormContext)(...)' as it is null.Jest.
which makes sense since I did not mock useFormContext . How can I Mock it? any help will be appreciated.