2016-10-10 16:32:03 -04:00
|
|
|
import { expect } from 'chai';
|
|
|
|
import { render } from 'enzyme';
|
|
|
|
|
2017-05-02 20:04:16 -04:00
|
|
|
import Avatar from '../../../app/javascript/mastodon/components/avatar'
|
2016-10-10 16:32:03 -04:00
|
|
|
|
2016-10-10 16:46:37 -04:00
|
|
|
describe('<Avatar />', () => {
|
2016-10-12 12:06:18 -04:00
|
|
|
const src = '/path/to/image.jpg';
|
|
|
|
const size = 100;
|
2017-04-10 18:38:58 -04:00
|
|
|
const wrapper = render(<Avatar src={src} animate size={size} />);
|
2016-10-12 12:06:18 -04:00
|
|
|
|
2017-04-10 18:38:58 -04: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 12:06:18 -04: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 16:32:03 -04:00
|
|
|
});
|
|
|
|
});
|