about summary refs log tree commit diff
path: root/spec/javascript/components/avatar.test.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'spec/javascript/components/avatar.test.jsx')
-rw-r--r--spec/javascript/components/avatar.test.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/javascript/components/avatar.test.jsx b/spec/javascript/components/avatar.test.jsx
index f69b538a2..79b7d02f4 100644
--- a/spec/javascript/components/avatar.test.jsx
+++ b/spec/javascript/components/avatar.test.jsx
@@ -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);