Skip to content

Commit

Permalink
feat(dryRun): count no of tests of each suite (#3620)
Browse files Browse the repository at this point in the history
  • Loading branch information
kobenguyent committed May 21, 2023
1 parent 0296a0e commit 2c0c250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/command/dryRun.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function printTests(files) {
let numOfSuites = 0;

for (const suite of mocha.suite.suites) {
output.print(`${colors.white.bold(suite.title)} -- ${output.styles.log(suite.file || '')}`);
output.print(`${colors.white.bold(suite.title)} -- ${output.styles.log(suite.file || '')} -- ${suite.tests.length} tests`);
numOfSuites++;

for (const test of suite.tests) {
Expand Down

0 comments on commit 2c0c250

Please sign in to comment.