diff --git a/src/audits/render.ts b/src/audits/render.ts
index 8b2b4fe4..5922b3e2 100644
--- a/src/audits/render.ts
+++ b/src/audits/render.ts
@@ -39,8 +39,7 @@ export async function renderAuditResultsToHTML(results: AuditResult[]) {
report += `
💡 ${grouped.notice.length} notices (suggestions)\n`;
}
if (grouped.warn.length) {
- // TODO: warning sign is rendered as "⚠️" in markdown instead of the emoji
- report += `⚠️ ${grouped.warn.length} warnings (optional)\n`;
+ report += `❗️ ${grouped.warn.length} warnings (optional)\n`;
}
if (grouped.error.length) {
report += `❌ ${grouped.error.length} errors (required)\n`;
diff --git a/tests/audits.test.ts b/tests/audits.test.ts
index a13f4857..7dc7b22b 100644
--- a/tests/audits.test.ts
+++ b/tests/audits.test.ts
@@ -119,7 +119,7 @@ describe('Render audit results to HTML', () => {
- 6 audits in total
- ✅ 2 pass
- - ⚠️ 2 warnings (optional)
+ - ❗️ 2 warnings (optional)
- ❌ 2 errors (required)