File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ const tests = [
36
36
d . run ( function ( ) {
37
37
setTimeout ( function ( ) {
38
38
throw new Error ( 'boom!' ) ;
39
- } ) ;
39
+ } , 1 ) ;
40
40
} ) ;
41
41
} ,
42
42
@@ -65,7 +65,7 @@ const tests = [
65
65
66
66
d . run ( function ( ) {
67
67
var fs = require ( 'fs' ) ;
68
- fs . exists ( '/non/existing/file' , function onExists ( exists ) {
68
+ fs . exists ( '/non/existing/file' , function onExists ( ) {
69
69
throw new Error ( 'boom!' ) ;
70
70
} ) ;
71
71
} ) ;
@@ -82,7 +82,7 @@ const tests = [
82
82
d2 . run ( function ( ) {
83
83
setTimeout ( function ( ) {
84
84
throw new Error ( 'boom!' ) ;
85
- } ) ;
85
+ } , 1 ) ;
86
86
} ) ;
87
87
} ) ;
88
88
} ,
@@ -129,7 +129,7 @@ const tests = [
129
129
d . run ( function ( ) {
130
130
d2 . run ( function ( ) {
131
131
var fs = require ( 'fs' ) ;
132
- fs . exists ( '/non/existing/file' , function onExists ( exists ) {
132
+ fs . exists ( '/non/existing/file' , function onExists ( ) {
133
133
throw new Error ( 'boom!' ) ;
134
134
} ) ;
135
135
} ) ;
You can’t perform that action at this time.
0 commit comments