import React from 'react'; import { shallow } from 'enzyme'; import PickerAccount from './PickerAccount'; import { TEST_ACCOUNT_ADDRESS, TEST_ACCOUNT_NAME, } from './PickerAccount.constants'; import { AccountAvatarType } from '../AccountAvatar'; describe('PickerAccount', () => { it('should render correctly', () => { const wrapper = shallow( , ); expect(wrapper).toMatchSnapshot(); }); });