diff options
author | Yamagishi Kazutoshi <ykzts@desire.sh> | 2017-06-06 10:56:36 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-06-06 03:56:36 +0200 |
commit | 7a7bfa5170605710fb2506ad714b134c9e45206f (patch) | |
tree | 4e15099f433ed0bbf9b921328bf50854ee2a441a /spec/javascript/components | |
parent | e969c7864529900ebb106769883000cbe8752ec9 (diff) |
Add quotes ESLint rules (#3602)
* Add quotes ESLint rule * Add jsx-quotes ESlint rule * Sort ESLint rules
Diffstat (limited to 'spec/javascript/components')
-rw-r--r-- | spec/javascript/components/features/ui/components/column.test.js | 6 |
1 files changed, 3 insertions, 3 deletions
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('<Column />', () => { it('runs the scroll animation if the column contains scrollable content', () => { const wrapper = mount( - <Column heading="notifications"> - <div className="scrollable" /> + <Column heading='notifications'> + <div className='scrollable' /> </Column> ); wrapper.find(ColumnHeader).simulate('click'); @@ -22,7 +22,7 @@ describe('<Column />', () => { }); it('does not try to scroll if there is no scrollable content', () => { - const wrapper = mount(<Column heading="notifications" />); + const wrapper = mount(<Column heading='notifications' />); wrapper.find(ColumnHeader).simulate('click'); expect(global.requestAnimationFrame.called).to.equal(false); }); |