Compile dist code

This commit is contained in:
Jozef Izso 2025-06-08 16:44:36 +02:00
parent 2312e637f3
commit 6adcc0c72a
Failed to extract signature

3
dist/index.js generated vendored
View file

@ -2115,6 +2115,9 @@ function getTestsReport(ts, runIndex, suiteIndex, options) {
}
const space = grp.name ? ' ' : '';
for (const tc of grp.tests) {
if (options.listTests === 'failed' && tc.result !== 'failed') {
continue;
}
const result = getResultIcon(tc.result);
sections.push(`${space}${result} ${tc.name}`);
if (tc.error) {