import React from 'react';
import { shallow } from 'enzyme';
import Icon from './Icon';
describe(' component', () => {
const props = {
name: 'austria',
};
test('should render the component in default state', () => {
const wrapper = shallow();
expect(wrapper.html()).toMatchSnapshot();
});
});