0
0
Fork 0

use ES6 arrow functions

This commit is contained in:
Kai Schaper 2016-10-10 22:46:37 +02:00
parent e0a4455622
commit ecd4042c20
3 changed files with 6 additions and 6 deletions

View file

@ -3,8 +3,8 @@ import { render } from 'enzyme';
import Avatar from '../../../app/assets/javascripts/components/components/avatar'
describe('<Avatar />', function() {
it('renders an img with the given src', function() {
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);