2016-10-10 22:32:03 +02:00
|
|
|
import { expect } from 'chai';
|
|
|
|
import { render } from 'enzyme';
|
|
|
|
|
2017-05-03 02:04:16 +02:00
|
|
|
import Avatar from '../../../app/javascript/mastodon/components/avatar'
|
2016-10-10 22:32:03 +02:00
|
|
|
|
2016-10-10 22:46:37 +02:00
|
|
|
describe('<Avatar />', () => {
|
2016-10-12 18:06:18 +02:00
|
|
|
const src = '/path/to/image.jpg';
|
|
|
|
const size = 100;
|
2017-04-11 00:38:58 +02:00
|
|
|
const wrapper = render(<Avatar src={src} animate size={size} />);
|
2016-10-12 18:06:18 +02:00
|
|
|
|
2017-04-11 00:38:58 +02:00
|
|
|
it('renders a div element with the given src as background', () => {
|
|
|
|
expect(wrapper.find('div')).to.have.style('background-image', `url(${src})`);
|
2016-10-12 18:06:18 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
it('renders a div element of the given size', () => {
|
|
|
|
['width', 'height'].map((attr) => {
|
|
|
|
expect(wrapper.find('div')).to.have.style(attr, `${size}px`);
|
|
|
|
});
|
2016-10-10 22:32:03 +02:00
|
|
|
});
|
|
|
|
});
|