We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7318c70 commit ed8bf7dCopy full SHA for ed8bf7d
src/reports/test-table.hbs
@@ -1,7 +1,23 @@
1
<details open >
2
-| **Test Name** | **Status** | **Flaky** | **Duration** |
3
-| --- | --- | --- | --- |
4
-{{#slice ctrf.tests 0 8000}}
5
-| {{name}} | {{getCtrfEmoji status}} | {{#if flaky}}{{getCtrfEmoji "flaky"}}{{/if}} | {{formatDurationMs duration}} |
6
-{{/slice}}
+ <summary>Test Results</summary>
+ <table>
+ <thead>
+ <tr>
+ <th><strong>Test Name</strong></th>
7
+ <th><strong>Status</strong></th>
8
+ <th><strong>Flaky</strong></th>
9
+ <th><strong>Duration</strong></th>
10
+ </tr>
11
+ </thead>
12
+ <tbody>
13
+ {{#slice ctrf.tests 0 8000}}
14
15
+ <td>{{name}}</td>
16
+ <td>{{getCtrfEmoji status}}</td>
17
+ <td>{{#if flaky}}{{getCtrfEmoji "flaky"}}{{/if}}</td>
18
+ <td>{{formatDurationMs duration}}</td>
19
20
+ {{/slice}}
21
+ </tbody>
22
+ </table>
23
</details>
0 commit comments