File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 34
34
"items" : " 2.x.x"
35
35
},
36
36
"peerDependencies" : {
37
- "hapi" : " >=10 <17 "
37
+ "hapi" : " >=10 <16 "
38
38
},
39
39
"devDependencies" : {
40
40
"boom" : " 5.x.x" ,
Original file line number Diff line number Diff line change @@ -486,7 +486,7 @@ describe('Underdog', () => {
486
486
srv . stop ( done ) ;
487
487
} ) ;
488
488
489
- request . on ( 'push' , ( ) => new Error ( 'Should not make it here' ) ) ;
489
+ request . on ( 'push' , ( ) => done ( new Error ( 'Should not make it here' ) ) ) ;
490
490
} ) ;
491
491
} ) ;
492
492
@@ -531,7 +531,7 @@ describe('Underdog', () => {
531
531
srv . stop ( done ) ;
532
532
} ) ;
533
533
534
- request . on ( 'push' , ( ) => new Error ( 'Should not make it here' ) ) ;
534
+ request . on ( 'push' , ( ) => done ( new Error ( 'Should not make it here' ) ) ) ;
535
535
} ) ;
536
536
} ) ;
537
537
You can’t perform that action at this time.
0 commit comments