run async test in parallel, not in series

This commit is contained in:
Jeff Williams 2012-10-24 20:41:28 -07:00
parent 8dea758764
commit b8c54e4e0a

View File

@ -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);