Skip to content

Commit

Permalink
fix module names for parallel runs (#3547)
Browse files Browse the repository at this point in the history
  • Loading branch information
swrdfish committed Jan 6, 2023
1 parent 3667556 commit 8528648
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/runner/concurrency/index.js
Expand Up @@ -231,8 +231,8 @@ class Concurrency extends EventEmitter {
* @param {function} fn
*/
static buildProcessQueue(maxWorkers, modules, fn) {
const queue = modules;
const queue = modules.slice(0);

let workers = 0;
let index = 0;

Expand Down

0 comments on commit 8528648

Please sign in to comment.