Skip to content

Commit 31116db

Browse files
authored
fix: remove job count from parallel mode debug log (#4416)
1 parent 478ca6a commit 31116db

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

lib/cli/run-helpers.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -141,11 +141,7 @@ const singleRun = async (mocha, {exit}, fileCollectParams) => {
141141
*/
142142
const parallelRun = async (mocha, options, fileCollectParams) => {
143143
const files = collectFiles(fileCollectParams);
144-
debug(
145-
'executing %d test file(s) across %d concurrent jobs',
146-
files.length,
147-
options.jobs
148-
);
144+
debug('executing %d test file(s) in parallel mode', files.length);
149145
mocha.files = files;
150146

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

0 commit comments

Comments
 (0)