Skip to content

Commit b8c54e4

Browse files
committed
run async test in parallel, not in series
1 parent 8dea758 commit b8c54e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/specs/jshint/jshint-clean.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ describe('jshint-clean', function() {
5959

6060
files = app.jsdoc.scanner.scan([env.dirname], 10, filter);
6161

62-
async.forEachSeries(files, function(file, cb) {
62+
async.forEach(files, function(file, cb) {
6363
jsHintCheck(file, function(err, jsHintErrors) {
6464
expect(jsHintErrors).toBeUndefined();
6565
cb(err);

0 commit comments

Comments
 (0)