File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 35
35
"test" : " make test"
36
36
},
37
37
"devDependencies" : {
38
- "chai" : " ^3.0 .0" ,
39
- "coveralls" : " ^2.11.2 " ,
38
+ "chai" : " ^3.2 .0" ,
39
+ "coveralls" : " ^2.11.4 " ,
40
40
"eslint" : " ^1.2.1" ,
41
- "istanbul" : " ^0.3.15 " ,
42
- "jscs" : " ^2.1.0 " ,
41
+ "istanbul" : " ^0.3.18 " ,
42
+ "jscs" : " ^2.1.1 " ,
43
43
"mkdirp" : " ^0.5.1" ,
44
44
"mocha" : " ^2.2.5" ,
45
45
"restify" : " ^4.0.0" ,
46
46
"restify-clients" : " ^1.0.0"
47
47
},
48
48
"dependencies" : {
49
49
"assert-plus" : " ^0.1.5" ,
50
- "lodash" : " ^3.9.3 " ,
50
+ "lodash" : " ^3.10.1 " ,
51
51
"verror" : " ^1.6.0"
52
52
}
53
53
}
Original file line number Diff line number Diff line change @@ -539,7 +539,7 @@ describe('restify-errors node module.', function() {
539
539
} ) ;
540
540
} ) ;
541
541
542
- it ( 'should send send RestErrors with status codes' , function ( done ) {
542
+ it ( 'should send RestErrors with status codes' , function ( done ) {
543
543
server . get ( '/2' , function ( req , res , next ) {
544
544
res . send ( new restifyErrors . BadDigestError ( 'indigestion' ) ) ;
545
545
next ( ) ;
@@ -553,7 +553,7 @@ describe('restify-errors node module.', function() {
553
553
} ) ;
554
554
} ) ;
555
555
556
- it ( 'should send send custom errors with status codes' , function ( done ) {
556
+ it ( 'should send custom errors with status codes' , function ( done ) {
557
557
server . get ( '/3' , function ( req , res , next ) {
558
558
res . send ( new restifyErrors . ExecutionError ( 'bad joystick input!' ) ) ;
559
559
next ( ) ;
You can’t perform that action at this time.
0 commit comments