Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 4183766

Browse files
committed
Linty lint
1 parent 39df687 commit 4183766

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

test/controllers/git-tab-header-controller.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ describe('GitTabHeaderController', function() {
115115
let resolveLockChange;
116116
const setContextLock = sinon.stub().returns(new Promise(resolve => {
117117
resolveLockChange = resolve;
118-
}))
118+
}));
119119
const wrapper = shallow(buildApp({currentWorkDir: 'the/workdir', contextLocked: false, setContextLock}));
120120

121121
assert.isFalse(wrapper.find('GitTabHeaderView').prop('contextLocked'));
@@ -141,7 +141,7 @@ describe('GitTabHeaderController', function() {
141141
let resolveWorkdirChange;
142142
const changeWorkingDirectory = sinon.stub().returns(new Promise(resolve => {
143143
resolveWorkdirChange = resolve;
144-
}))
144+
}));
145145
const wrapper = shallow(buildApp({currentWorkDir: 'original', changeWorkingDirectory}));
146146

147147
assert.strictEqual(wrapper.find('GitTabHeaderView').prop('workdir'), 'original');

test/controllers/github-tab-header-controller.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ describe('GithubTabHeaderController', function() {
7979
let resolveLockChange;
8080
const setContextLock = sinon.stub().returns(new Promise(resolve => {
8181
resolveLockChange = resolve;
82-
}))
82+
}));
8383
const wrapper = shallow(buildApp({currentWorkDir: 'the/workdir', contextLocked: false, setContextLock}));
8484

8585
assert.isFalse(wrapper.find('GithubTabHeaderView').prop('contextLocked'));
@@ -105,7 +105,7 @@ describe('GithubTabHeaderController', function() {
105105
let resolveWorkdirChange;
106106
const changeWorkingDirectory = sinon.stub().returns(new Promise(resolve => {
107107
resolveWorkdirChange = resolve;
108-
}))
108+
}));
109109
const wrapper = shallow(buildApp({currentWorkDir: 'original', changeWorkingDirectory}));
110110

111111
assert.strictEqual(wrapper.find('GithubTabHeaderView').prop('workdir'), 'original');

test/views/git-tab-header-view.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ describe('GitTabHeaderView', function() {
9292
const wrapper = build({changingLock: true});
9393

9494
assert.isTrue(wrapper.find('button').prop('disabled'));
95-
})
95+
});
9696
});
9797

9898
describe('with falsish props', function() {

test/views/github-tab-header-view.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ describe('GithubTabHeaderView', function() {
8888
const wrapper = build({changingLock: true});
8989

9090
assert.isTrue(wrapper.find('button').prop('disabled'));
91-
})
91+
});
9292
});
9393

9494
describe('with falsish props', function() {

0 commit comments

Comments
 (0)