We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3803e08 commit c744ab6Copy full SHA for c744ab6
test/test-async.js
@@ -426,7 +426,6 @@ exports['auto results'] = function(test){
426
});
427
};
428
429
-
430
exports['auto empty object'] = function(test){
431
async.auto({}, function(err){
432
test.ok(err === null, err + " passed instead of 'null'");
@@ -461,6 +460,13 @@ exports['auto no callback'] = function(test){
461
460
462
463
+exports['auto concurrency no callback'] = function(test){
464
+ async.auto({
465
+ task1: function(callback){callback();},
466
+ task2: ['task1', function(callback){callback(); test.done();}]
467
+ }, 1);
468
+};
469
+
470
exports['auto error should pass partial results'] = function(test) {
471
async.auto({
472
task1: function(callback){
0 commit comments