Skip to content

Commit 823db8a

Browse files
committed
deps update and lint
1 parent f24ee68 commit 823db8a

File tree

3 files changed

+17
-16
lines changed

3 files changed

+17
-16
lines changed

.codeclimate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ engines:
1111
fixme:
1212
enabled: true
1313
radon:
14-
enabled: true
14+
enabled: false
1515
ratings:
1616
paths:
1717
- "**.coffee"

package.json

+12-13
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,21 @@
2828
"coffee-script": "~1.6"
2929
},
3030
"devDependencies": {
31-
"chai": "^2.1.1",
32-
"codeclimate-test-reporter": "^0.3.3",
33-
"coffee-coverage": "^1.0.1",
31+
"chai": "~3.5.0",
32+
"codeclimate-test-reporter": "~0.3.3",
33+
"coffee-coverage": "~1.0.1",
3434
"coffee-script": "~1.6",
35-
"coffeelint": "^1.15.7",
36-
"coveralls": "^2.11.12",
37-
"es6-promise": "^3.2.1",
35+
"coffeelint": "~1.15.7",
36+
"coveralls": "~2.11.12",
37+
"es6-promise": "~3.2.1",
3838
"hubot": "2.x",
3939
"hubot-auth": "^2.0.0",
40-
"hubot-test-helper": "1.4.4",
41-
"istanbul": "^0.4.4",
42-
"mocha": "^2.4.5",
43-
"nock": "^8.0.0",
44-
"sinon": "^1.4.2",
45-
"sinon-chai": "^2.8.0",
46-
"supertest": "^1.2.0"
40+
"hubot-test-helper": "~1.4.4",
41+
"istanbul": "~0.4.4",
42+
"mocha": "~3.0.2",
43+
"nock": "~8.0.0",
44+
"sinon": "~1.4.2",
45+
"sinon-chai": "~2.8.0"
4746
},
4847
"scripts": {
4948
"test": "make test",

test/phabs_commands_test.coffee

+4-2
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,8 @@ describe 'phabs_commands module', ->
527527
hubot 'phab T42 check! ano', 'user_with_phid'
528528
it 'gives information about the next checkbox', ->
529529
expect(hubotResponse()).to.eql 'Checked on T42: [x] another'
530-
expect(hubotResponse(2)).to.eql 'Next on T42: there is no more unchecked checkbox starting with ano.'
530+
expect(hubotResponse(2)).
531+
to.eql 'Next on T42: there is no more unchecked checkbox starting with ano.'
531532

532533
context 'task id is provided but edit fails', ->
533534
beforeEach ->
@@ -685,7 +686,8 @@ describe 'phabs_commands module', ->
685686
hubot 'phab T42 uncheck! some', 'user_with_phid'
686687
it 'gives information about the previous checkbox', ->
687688
expect(hubotResponse()).to.eql 'Unchecked on T42: [ ] something'
688-
expect(hubotResponse(2)).to.eql 'Previous on T42: there is no more checked checkbox starting with some.'
689+
expect(hubotResponse(2)).
690+
to.eql 'Previous on T42: there is no more checked checkbox starting with some.'
689691

690692
context 'task id is provided but edit fails', ->
691693
beforeEach ->

0 commit comments

Comments
 (0)