We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59302ea commit 77a4b87Copy full SHA for 77a4b87
src/formatters/testResultsFormatter.ts
@@ -92,7 +92,7 @@ const displayVerboseTestSuccesses = (resultSuccesses: RunTestResult['successes']
92
ux.log();
93
ux.log(success(`Test Success [${successes.length}]`));
94
for (const test of successes) {
95
- const testName = ansis.underline(`${test.name}.${test.methodName}`);
+ const testName = ansis.underline(`${test.name}.${test.methodName} (${test.time}ms)`);
96
ux.log(`${check} ${testName}`);
97
}
98
0 commit comments