From 31116dbf825487490d5416c95b2685e18e7359d3 Mon Sep 17 00:00:00 2001 From: Sujin Park Date: Tue, 13 Oct 2020 07:02:46 +0900 Subject: [PATCH] fix: remove job count from parallel mode debug log (#4416) --- lib/cli/run-helpers.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/cli/run-helpers.js b/lib/cli/run-helpers.js index 6856a5a798..dfac8b4479 100644 --- a/lib/cli/run-helpers.js +++ b/lib/cli/run-helpers.js @@ -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