File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -104946,7 +104946,7 @@ const generateSummary = async (testResults) => {
104946104946 `${testResults.totalFailed}`,
104947104947 `${testResults.totalPending}`,
104948104948 `${testResults.totalSkipped}`,
104949- `${testResults.totalDuration / 1000}s` || ''
104949+ `${( testResults.totalDuration || 0) / 1000}s`
104950104950 ]
104951104951
104952104952 const summaryTitle = core.getInput('summary-title')
Original file line number Diff line number Diff line change @@ -899,7 +899,7 @@ const generateSummary = async (testResults) => {
899899 `${ testResults . totalFailed } ` ,
900900 `${ testResults . totalPending } ` ,
901901 `${ testResults . totalSkipped } ` ,
902- `${ testResults . totalDuration / 1000 } s` || ''
902+ `${ ( testResults . totalDuration || 0 ) / 1000 } s`
903903 ]
904904
905905 const summaryTitle = core . getInput ( 'summary-title' )
You can’t perform that action at this time.
0 commit comments