Skip to content

Commit 25d743d

Browse files
committed
Update deps.
1 parent 61a3382 commit 25d743d

2 files changed

Lines changed: 10 additions & 14 deletions

File tree

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,21 @@
2828
},
2929
"homepage": "https://github.com/mcollina/fastparallel",
3030
"devDependencies": {
31-
"async": "^2.0.0-rc.5",
32-
"coveralls": "^2.11.9",
31+
"async": "^2.5.0",
32+
"coveralls": "^2.13.1",
3333
"fastbench": "^1.0.1",
3434
"faucet": "0.0.1",
3535
"insync": "^2.1.0",
36-
"istanbul": "^0.4.3",
37-
"items": "^2.1.0",
38-
"neo-async": "^1.8.2",
36+
"istanbul": "^0.4.5",
37+
"items": "^2.1.1",
38+
"neo-async": "^2.0.0",
3939
"parallelize": "^3.0.0",
40-
"pre-commit": "^1.1.3",
41-
"standard": "^7.1.0",
42-
"tape": "^4.5.0"
40+
"pre-commit": "^1.2.2",
41+
"standard": "^10.0.0",
42+
"tape": "^4.7.0"
4343
},
4444
"dependencies": {
45-
"reusify": "^1.0.0",
45+
"reusify": "^1.0.1",
4646
"xtend": "^4.0.1"
4747
}
4848
}

test.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -278,18 +278,14 @@ test('does not require a done callback', function (t) {
278278
t.plan(4)
279279

280280
var instance = parallel()
281-
var count = 0
282281
var obj = {}
283282

284283
instance(obj, [something, something], 42)
285284

286285
function something (arg, cb) {
287286
t.equal(obj, this)
288287
t.equal(arg, 42)
289-
setImmediate(function () {
290-
count++
291-
cb()
292-
})
288+
setImmediate(cb)
293289
}
294290
})
295291

0 commit comments

Comments
 (0)