import { fromJS } from 'immutable'; import React from 'react'; import { createComponent } from 'soapbox/test_helpers'; import AvatarOverlay from '../avatar_overlay'; describe(' { const account = fromJS({ username: 'alice', acct: 'alice', display_name: 'Alice', avatar: '/animated/alice.gif', avatar_static: '/static/alice.jpg', }); const friend = fromJS({ username: 'eve', acct: 'eve@blackhat.lair', display_name: 'Evelyn', avatar: '/animated/eve.gif', avatar_static: '/static/eve.jpg', }); it('renders a overlay avatar', () => { const component = createComponent(); const tree = component.toJSON(); expect(tree).toMatchSnapshot(); }); });