import React from 'react';
import { render } from '@testing-library/react';
import AddressInput from './AddressInput';
import FormTestBase from '../__Tests__/FormTestBase';
describe('AddressInput', () => {
it('renders without crashing', () => {
render(
{({ Field }) => (
)}
);
});
it('has matching snapshot', () => {
const renderResult = render(
{({ Field }) => (
)}
);
expect(renderResult.asFragment()).toMatchSnapshot();
});
});