File tree 3 files changed +17
-16
lines changed
3 files changed +17
-16
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ engines:
11
11
fixme :
12
12
enabled : true
13
13
radon :
14
- enabled : true
14
+ enabled : false
15
15
ratings :
16
16
paths :
17
17
- " **.coffee"
Original file line number Diff line number Diff line change 28
28
"coffee-script" : " ~1.6"
29
29
},
30
30
"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" ,
34
34
"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" ,
38
38
"hubot" : " 2.x" ,
39
39
"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"
47
46
},
48
47
"scripts" : {
49
48
"test" : " make test" ,
Original file line number Diff line number Diff line change @@ -527,7 +527,8 @@ describe 'phabs_commands module', ->
527
527
hubot ' phab T42 check! ano' , ' user_with_phid'
528
528
it ' gives information about the next checkbox' , ->
529
529
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.'
531
532
532
533
context ' task id is provided but edit fails' , ->
533
534
beforeEach ->
@@ -685,7 +686,8 @@ describe 'phabs_commands module', ->
685
686
hubot ' phab T42 uncheck! some' , ' user_with_phid'
686
687
it ' gives information about the previous checkbox' , ->
687
688
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.'
689
691
690
692
context ' task id is provided but edit fails' , ->
691
693
beforeEach ->
You can’t perform that action at this time.
0 commit comments