mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
run async test in parallel, not in series
This commit is contained in:
parent
8dea758764
commit
b8c54e4e0a
@ -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);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user