actually use const

This commit is contained in:
Kai Schaper 2016-10-12 18:18:55 +02:00
parent b113cf97fb
commit cbfc12044d
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ 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} />);
const wrapper = render(<Avatar src={src} size={size} />);
it('renders an img element with the given src', () => {
expect(wrapper.find('img')).to.have.attr('src', `${src}`);