bigbuffet-rw/app/soapbox/components/__tests__/avatar_overlay.test.tsx

29 lines
741 B
TypeScript
Raw Normal View History

2020-03-27 13:59:38 -07:00
import { fromJS } from 'immutable';
import React from 'react';
import { render, screen } from '../../jest/test-helpers';
2020-06-10 17:10:13 -07:00
import AvatarOverlay from '../avatar_overlay';
2020-03-27 13:59:38 -07:00
describe('<AvatarOverlay', () => {
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', () => {
render(<AvatarOverlay account={account} friend={friend} />);
expect(screen.queryAllByRole('img')).toHaveLength(2);
2020-03-27 13:59:38 -07:00
});
});