Skip to content

Commit e389346

Browse files
committed
more formattinhg
1 parent 6bebf1d commit e389346

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/testResultsSummary.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ function getTestHeader(testResults: MatlabTestFile[][], stats: TestStatistics):
7373
<th>Duration(s) ⌛</th>
7474
</tr>
7575
<tr align="center">
76-
<td>${stats.total}</td>
77-
<td>${stats.passed}</td>
78-
<td>${stats.failed}</td>
79-
<td>${stats.incomplete}</td>
80-
<td>${stats.notRun}</td>
81-
<td>${stats.duration.toFixed(2)}</td>
76+
<td>` + stats.total + `</td>
77+
<td>` + stats.passed + `</td>
78+
<td>` + stats.failed + `</td>
79+
<td>` + stats.incomplete + `</td>
80+
<td>` + stats.notRun + `</td>
81+
<td>` + stats.duration.toFixed(2) + `</td>
8282
</tr>
8383
</table>`;
8484
}

0 commit comments

Comments
 (0)