{{#if (anyFailedTests ctrf.tests)}}
<table>
    <thead>
        <tr>
            <th>Failed Tests</th>
            <th>AI Summary ✨</th>
        </tr>
    </thead>
    <tbody>
{{#each ctrf.tests ~}}
  {{~#if (eq status "failed") ~}}
        <tr>
            <td>{{getCtrfEmoji "failed"}} {{name}}</td>
            <td>{{#if ai}}{{~{formatMessage ai}}}{{else}}No AI summary available{{/if}}</td>
        </tr>
  {{~/if}}
{{~/each}}
    </tbody>
</table>
{{else}}
<p>No failed tests ✨</p>
{{/if}}

