Skip to content

Commit 2c0c250

Browse files
authored
feat(dryRun): count no of tests of each suite (#3620)
1 parent 0296a0e commit 2c0c250

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/command/dryRun.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function printTests(files) {
5959
let numOfSuites = 0;
6060

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

6565
for (const test of suite.tests) {

0 commit comments

Comments
 (0)