Skip to content

Commit a785b2a

Browse files
committed
format table
1 parent 8bf52cc commit a785b2a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/testResultsSummary.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ function getDetailedResults(testResults: MatlabTestFile[][]): string {
8888
<tr>
8989
<th>Test File</th>
9090
<th>Duration(s)</th>
91-
</tr>
92-
${testResults.flat().map(file => generateTestFileRow(file)).join('\n')}
93-
</table>`;
91+
</tr>` +
92+
testResults.flat().map(file => generateTestFileRow(file)).join('\n') +
93+
`</table>`;
9494
}
9595

9696
function generateTestFileRow(file: MatlabTestFile): string {

0 commit comments

Comments
 (0)