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 {