From d5ecac74895d62a56d20bfbc0dcc8ceb7c2d2549 Mon Sep 17 00:00:00 2001 From: Patrik Husfloen Date: Thu, 8 Jun 2023 15:06:12 +0200 Subject: [PATCH] Tweak report output --- dist/index.js | 4 ++-- src/utils/markdown-utils.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dist/index.js b/dist/index.js index 8572211..3cfb736 100644 --- a/dist/index.js +++ b/dist/index.js @@ -2096,8 +2096,8 @@ var Align; Align["None"] = "---"; })(Align = exports.Align || (exports.Align = {})); exports.Icon = { - skip: '⚪', - success: '✅', + skip: '✖️', + success: '✔️', fail: '❌' // ':x:' }; function link(title, address) { diff --git a/src/utils/markdown-utils.ts b/src/utils/markdown-utils.ts index 74db595..0b02911 100644 --- a/src/utils/markdown-utils.ts +++ b/src/utils/markdown-utils.ts @@ -6,8 +6,8 @@ export enum Align { } export const Icon = { - skip: '⚪', // ':white_circle:' - success: '✅', // ':white_check_mark:' + skip: '✖️', // ':heavy_multiplication_x:' + success: '✔️', // ':heavy_check_mark:' fail: '❌' // ':x:' }