Skip to content

Commit

Permalink
fix: remove spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
Ma11hewThomas committed Nov 20, 2024
1 parent 19c2006 commit 5e9c821
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/failed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export function generateFailedTestsDetailsTable(tests: CtrfTest[], useSuiteName:
<tr>
<td>${getTestName(test, useSuiteName)}</td>
<td>${test.status} ❌</td>
<td>${convert.toHtml(test.message || '') || 'No failure message'}</td>
<td>${convert.toHtml(test.message || '').replace(/\n/g, '<br>') || 'No failure message'}</td>
</tr>`
})
tableHtml += `
Expand Down

0 comments on commit 5e9c821

Please sign in to comment.