{{#if (anySkippedTests ctrf.tests)}}
| **Tests** | **Status** |
| --- | --- |
{{#each ctrf.tests}}
    {{#if (eq status "skipped")}}
|       {{name}} | {{status}} {{getCtrfEmoji status}} |
    {{else if (eq status "pending")}}
|       {{name}} | {{status}} {{getCtrfEmoji status}} |
    {{else if (eq status "other")}}
|       {{name}} | {{status}} {{getCtrfEmoji status}} |
    {{/if}}
{{/each}}
{{else}}
<p>No skipped tests ✨</p>
{{/if}}