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