File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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}
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments