1
0
Fork 0
mirror of https://github.com/dorny/test-reporter.git synced 2026-05-06 10:37:36 +02:00

Resolve list-files conflicts on current main

This commit is contained in:
Jozef Izso 2026-04-25 12:13:19 +02:00
parent ba6f1d11e2
commit 45c8d46681
Failed to extract signature
4 changed files with 37 additions and 11 deletions

View file

@ -183,7 +183,17 @@ class TestReporter {
}
}
const {listSuites, listTests, slugPrefix, listFiles, onlySummary, useActionsSummary, badgeTitle, reportTitle, collapsed} = this
const {
listSuites,
listTests,
slugPrefix,
listFiles,
onlySummary,
useActionsSummary,
badgeTitle,
reportTitle,
collapsed
} = this
const passed = results.reduce((sum, tr) => sum + tr.passed, 0)
const failed = results.reduce((sum, tr) => sum + tr.failed, 0)

View file

@ -11,7 +11,7 @@ const MAX_ACTIONS_SUMMARY_LENGTH = 1048576
export interface ReportOptions {
listSuites: 'all' | 'failed' | 'none'
listTests: 'all' | 'failed' | 'none'
slugPrefix: string;
slugPrefix: string
listFiles: 'all' | 'failed' | 'none'
baseUrl: string
onlySummary: boolean