From 6adcc0c72ad8b85fe3047f7daa73069ba287b91b Mon Sep 17 00:00:00 2001 From: Jozef Izso Date: Sun, 8 Jun 2025 16:44:36 +0200 Subject: [PATCH] Compile dist code --- dist/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dist/index.js b/dist/index.js index d1162f4..3a62d7e 100644 --- a/dist/index.js +++ b/dist/index.js @@ -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) {