Archived
2
0
Fork 0
This repository has been archived on 2024-06-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
mastodon/spec/javascript/components/avatar.test.jsx
2016-10-10 22:48:58 +02:00

12 lines
403 B
JavaScript

import { expect } from 'chai';
import { render } from 'enzyme';
import Avatar from '../../../app/assets/javascripts/components/components/avatar'
describe('<Avatar />', () => {
it('renders an img with the given src', () => {
const src = '/path/to/image.jpg';
const wrapper = render(<Avatar src={src} size={100} />);
expect(wrapper.find(`img[src="${src}"]`)).to.have.length(1);
});
});