From ecd4042c209a402c1ccace7e2b989783dce03436 Mon Sep 17 00:00:00 2001 From: Kai Schaper <303@posteo.de> Date: Mon, 10 Oct 2016 22:46:37 +0200 Subject: use ES6 arrow functions --- spec/javascript/components/loading_indicator.test.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'spec/javascript/components/loading_indicator.test.jsx') diff --git a/spec/javascript/components/loading_indicator.test.jsx b/spec/javascript/components/loading_indicator.test.jsx index e62288405..7039dbfbd 100644 --- a/spec/javascript/components/loading_indicator.test.jsx +++ b/spec/javascript/components/loading_indicator.test.jsx @@ -3,8 +3,8 @@ import { shallow } from 'enzyme'; import LoadingIndicator from '../../../app/assets/javascripts/components/components/loading_indicator' -describe('', function() { - it('renders text that indicates loading', function() { +describe('', () => { + it('renders text that indicates loading', () => { const wrapper = shallow(); expect(wrapper.text()).to.match(/loading/i); }); -- cgit