From 069594f4583f9aed7fecec277f79d00904ace7ed Mon Sep 17 00:00:00 2001 From: Patrik Husfloen Date: Thu, 8 Jun 2023 15:34:12 +0200 Subject: [PATCH] Tweak report --- dist/index.js | 6 +++--- src/utils/markdown-utils.ts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dist/index.js b/dist/index.js index 2cfab7c..1626b13 100644 --- a/dist/index.js +++ b/dist/index.js @@ -2097,9 +2097,9 @@ var Align; Align["None"] = "---"; })(Align = exports.Align || (exports.Align = {})); exports.Icon = { - skip: '⬜', - success: '🟩', - fail: '🟥' // ':x:' + skip: '⚪', + success: '🟢', + fail: '🔴' // ':x:' }; function link(title, address) { return `[${title}](${address})`; diff --git a/src/utils/markdown-utils.ts b/src/utils/markdown-utils.ts index 803b09c..bb02bed 100644 --- a/src/utils/markdown-utils.ts +++ b/src/utils/markdown-utils.ts @@ -6,9 +6,9 @@ export enum Align { } export const Icon = { - skip: '⬜', // ':heavy_multiplication_x:' - success: '🟩', // ':heavy_check_mark:' - fail: '🟥' // ':x:' + skip: '⚪', // ':heavy_multiplication_x:' + success: '🟢', // ':heavy_check_mark:' + fail: '🔴' // ':x:' } export function link(title: string, address: string): string {