Skip to content

Commit

Permalink
Fix #199: Use ✅ instead of ✔️ for better cross platform look
Browse files Browse the repository at this point in the history
- Use the ✅ for passed tests
- Use the ⚪ for skipped tests
  • Loading branch information
Petr Dvořák authored and GitHub committed Oct 5, 2022
1 parent 0d9714d commit ae902f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/markdown-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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:'
}

Expand Down

0 comments on commit ae902f6

Please sign in to comment.