From ae902f665e32fa68fcd0a12cdce00c4827df164f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Dvo=C5=99=C3=A1k?= Date: Wed, 5 Oct 2022 22:01:28 +0200 Subject: [PATCH 1/2] =?UTF-8?q?Fix=20#199:=20Use=20=E2=9C=85=20instead=20o?= =?UTF-8?q?f=20=E2=9C=94=EF=B8=8F=20for=20better=20cross=20platform=20look?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Use the ✅ for passed tests - Use the ⚪ for skipped tests --- src/utils/markdown-utils.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/markdown-utils.ts b/src/utils/markdown-utils.ts index 0b02911..edc6c75 100644 --- a/src/utils/markdown-utils.ts +++ b/src/utils/markdown-utils.ts @@ -6,8 +6,8 @@ export enum Align { } export const Icon = { - skip: '✖️', // ':heavy_multiplication_x:' - success: '✔️', // ':heavy_check_mark:' + skip: '⚪', // ':white-circle:' + success: '✅', // ':white_check_mark:' fail: '❌' // ':x:' } From ba1a54f2f43696e65325dac230c6cdadd87d55d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Dvo=C5=99=C3=A1k?= Date: Wed, 5 Oct 2022 22:01:58 +0200 Subject: [PATCH 2/2] Update markdown-utils.ts --- src/utils/markdown-utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/markdown-utils.ts b/src/utils/markdown-utils.ts index edc6c75..74db595 100644 --- a/src/utils/markdown-utils.ts +++ b/src/utils/markdown-utils.ts @@ -6,7 +6,7 @@ export enum Align { } export const Icon = { - skip: '⚪', // ':white-circle:' + skip: '⚪', // ':white_circle:' success: '✅', // ':white_check_mark:' fail: '❌' // ':x:' }