import React from 'react'; import { shallow } from 'enzyme'; import AvatarIcon from './AvatarIcon'; import { BaseAvatarSize } from '../BaseAvatar'; import { IconName } from '../Icon'; describe('AvatarIcon', () => { it('should render correctly', () => { const wrapper = shallow( , ); expect(wrapper).toMatchSnapshot(); }); });