bigbuffet-rw/app/soapbox/components/__tests__/avatar-test.js

39 lines
943 B
JavaScript
Raw Normal View History

2020-03-27 13:59:38 -07:00
import { fromJS } from 'immutable';
import React from 'react';
2020-06-10 17:10:13 -07:00
import { createComponent } from 'soapbox/test_helpers';
2020-06-10 17:10:13 -07:00
import Avatar from '../avatar';
2020-03-27 13:59:38 -07:00
describe('<Avatar />', () => {
const account = fromJS({
username: 'alice',
acct: 'alice',
display_name: 'Alice',
avatar: '/animated/alice.gif',
avatar_static: '/static/alice.jpg',
});
const size = 100;
2020-03-27 13:59:38 -07:00
describe('Autoplay', () => {
it('renders an animated avatar', () => {
2020-06-10 17:10:13 -07:00
const component = createComponent(<Avatar account={account} animate size={size} />);
2020-03-27 13:59:38 -07:00
const tree = component.toJSON();
expect(tree).toMatchSnapshot();
});
});
describe('Still', () => {
it('renders a still avatar', () => {
2020-06-10 17:10:13 -07:00
const component = createComponent(<Avatar account={account} size={size} />);
2020-03-27 13:59:38 -07:00
const tree = component.toJSON();
expect(tree).toMatchSnapshot();
});
});
// TODO add autoplay test if possible
});