From b8c54e4e0abedb9c7dab19766206a88f47a774eb Mon Sep 17 00:00:00 2001 From: Jeff Williams Date: Wed, 24 Oct 2012 20:41:28 -0700 Subject: [PATCH] run async test in parallel, not in series --- test/specs/jshint/jshint-clean.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/specs/jshint/jshint-clean.js b/test/specs/jshint/jshint-clean.js index 51621c53..55868ea3 100644 --- a/test/specs/jshint/jshint-clean.js +++ b/test/specs/jshint/jshint-clean.js @@ -59,7 +59,7 @@ describe('jshint-clean', function() { files = app.jsdoc.scanner.scan([env.dirname], 10, filter); - async.forEachSeries(files, function(file, cb) { + async.forEach(files, function(file, cb) { jsHintCheck(file, function(err, jsHintErrors) { expect(jsHintErrors).toBeUndefined(); cb(err);