import { render } from '@testing-library/react-native';
import * as React from 'react';
import { Text } from 'react-native';
import * as UseFormField from '../hooks/useFormField';
import { FormField } from './FormField';
beforeEach(() => {
jest.clearAllMocks();
});
describe('FormField', () => {
it('register itself using useFormField', () => {
const useFormField = jest.spyOn(UseFormField, 'useFormField');
render(
Test
,
);
expect(useFormField.mock.calls[0][0]).toMatchObject({
hasFocusCallback: false,
ref: expect.objectContaining({ current: expect.any(Object) }),
});
});
it('wraps the children in a focusable View', () => {
const { toJSON } = render(
Test
,
);
expect(toJSON()).toMatchInlineSnapshot(`
Test
`);
});
});