import renderer from 'react-test-renderer';
import InternalLabel from './InternalLabel';
test('InternalLabel renders', () => {
const component = renderer.create(Email);
const tree = component.toJSON();
expect(tree).toMatchSnapshot();
});
test('InternalLabel renders with label hidden', () => {
const component = renderer.create(
Email
,
);
const tree = component.toJSON();
expect(tree).toMatchSnapshot();
});