From 7a7bfa5170605710fb2506ad714b134c9e45206f Mon Sep 17 00:00:00 2001 From: Yamagishi Kazutoshi Date: Tue, 6 Jun 2017 10:56:36 +0900 Subject: Add quotes ESLint rules (#3602) * Add quotes ESLint rule * Add jsx-quotes ESlint rule * Sort ESLint rules --- spec/javascript/components/features/ui/components/column.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'spec/javascript/components') diff --git a/spec/javascript/components/features/ui/components/column.test.js b/spec/javascript/components/features/ui/components/column.test.js index df0f43e60..4491d6e19 100644 --- a/spec/javascript/components/features/ui/components/column.test.js +++ b/spec/javascript/components/features/ui/components/column.test.js @@ -13,8 +13,8 @@ describe('', () => { it('runs the scroll animation if the column contains scrollable content', () => { const wrapper = mount( - -
+ +
); wrapper.find(ColumnHeader).simulate('click'); @@ -22,7 +22,7 @@ describe('', () => { }); it('does not try to scroll if there is no scrollable content', () => { - const wrapper = mount(); + const wrapper = mount(); wrapper.find(ColumnHeader).simulate('click'); expect(global.requestAnimationFrame.called).to.equal(false); }); -- cgit