import React from 'react'; import { render } from '../../utils/test-react-testing-library'; import Icon from './Icon'; describe(' component', () => { const props = { name: 'austria', }; test('should render the component in default state', () => { const { container } = render(); expect(container.firstChild).toMatchSnapshot(); }); });