mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-19 15:37:09 +01:00
only show failed issues
This commit is contained in:
parent
b9ac788b26
commit
39c3c54f81
6 changed files with 6836 additions and 8068 deletions
|
|
@ -233,6 +233,9 @@ function getTestsReport(ts: TestSuiteResult, runIndex: number, suiteIndex: numbe
|
|||
}
|
||||
const space = grp.name ? ' ' : ''
|
||||
for (const tc of grp.tests) {
|
||||
if (options.listTests === 'failed' && tc.result !== 'failed') {
|
||||
continue
|
||||
}
|
||||
if (options.listTests === 'non-skipped' && tc.result === 'skipped') {
|
||||
continue
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue