import renderer from 'react-test-renderer'; import { accountDefaultValues, createAccountFromServerJSON } from '@/mastodon/models/account'; import { Avatar } from '../avatar'; describe('', () => { const account = createAccountFromServerJSON({ ...accountDefaultValues, username: 'alice', acct: 'alice', display_name: 'Alice', avatar: '/animated/alice.gif', avatar_static: '/static/alice.jpg', }); const size = 100; describe('Autoplay', () => { it('renders a animated avatar', () => { const component = renderer.create(); const tree = component.toJSON(); expect(tree).toMatchSnapshot(); }); }); describe('Still', () => { it('renders a still avatar', () => { const component = renderer.create(); const tree = component.toJSON(); expect(tree).toMatchSnapshot(); }); }); // TODO add autoplay test if possible });