about summary refs log tree commit diff
path: root/spec/javascript/components/avatar.test.jsx
blob: a0f67e700b31c493db28e5ecf88d16d50b0a1151 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { expect } from 'chai';
import { render } from 'enzyme';

import Avatar from '../../../app/assets/javascripts/components/components/avatar'

describe('<Avatar />', () => {
  const src = '/path/to/image.jpg';
  const size = 100;
  const wrapper = render(<Avatar src={src} size={100} />);

  it('renders an img element with the given src', () => {
    expect(wrapper.find('img')).to.have.attr('src', `${src}`);
  });

  it('renders an img element of the given size', () => {
    ['width', 'height'].map((attr) => {
      expect(wrapper.find('img')).to.have.attr(attr, `${size}`);
    });
  });

  it('renders a div element of the given size', () => {
    ['width', 'height'].map((attr) => {
      expect(wrapper.find('div')).to.have.style(attr, `${size}px`);
    });
  });
});