| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 14c28eb commit f412b1f
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -58,7 +58,7 @@ const tests = [ | |||
| 58 | 58 | d.run(function() { | |
| 59 | 59 | setTimeout(function() { | |
| 60 | 60 | throw new Error('boom!'); | |
| 61 | - }); | ||
| 61 | + }, 1); | ||
| 62 | 62 | }); | |
| 63 | 63 | }, | |
| 64 | 64 | ||
@@ -87,7 +87,7 @@ const tests = [ | |||
| 87 | 87 | ||
| 88 | 88 | d.run(function() { | |
| 89 | 89 | var fs = require('fs'); | |
| 90 | - fs.exists('/non/existing/file', function onExists(exists) { | ||
| 90 | + fs.exists('/non/existing/file', function onExists() { | ||
| 91 | 91 | throw new Error('boom!'); | |
| 92 | 92 | }); | |
| 93 | 93 | }); | |
@@ -104,7 +104,7 @@ const tests = [ | |||
| 104 | 104 | d2.run(function() { | |
| 105 | 105 | setTimeout(function() { | |
| 106 | 106 | throw new Error('boom!'); | |
| 107 | - }); | ||
| 107 | + }, 1); | ||
| 108 | 108 | }); | |
| 109 | 109 | }); | |
| 110 | 110 | }, | |
@@ -151,7 +151,7 @@ const tests = [ | |||
| 151 | 151 | d.run(function() { | |
| 152 | 152 | d2.run(function() { | |
| 153 | 153 | var fs = require('fs'); | |
| 154 | - fs.exists('/non/existing/file', function onExists(exists) { | ||
| 154 | + fs.exists('/non/existing/file', function onExists() { | ||
| 155 | 155 | throw new Error('boom!'); | |
| 156 | 156 | }); | |
| 157 | 157 | }); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments