Skip to content

Commit

Permalink
fix: remove job count from parallel mode debug log (#4416)
Browse files Browse the repository at this point in the history
  • Loading branch information
sujin-park committed Oct 12, 2020
1 parent 478ca6a commit 31116db
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions lib/cli/run-helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,7 @@ const singleRun = async (mocha, {exit}, fileCollectParams) => {
*/
const parallelRun = async (mocha, options, fileCollectParams) => {
const files = collectFiles(fileCollectParams);
debug(
'executing %d test file(s) across %d concurrent jobs',
files.length,
options.jobs
);
debug('executing %d test file(s) in parallel mode', files.length);
mocha.files = files;

// note that we DO NOT load any files here; this is handled by the worker
Expand Down

0 comments on commit 31116db

Please sign in to comment.