mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-15 06:15:20 +01:00
[Test] Fix test end log check mark (#6726)
* [Test] Fix test end log check mark heavy check mark looks weird on more fonts than the normal one * Added variant selector codepoint to force rendering as thin version * Update test/test-utils/setup/test-end-log.ts Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> * Changed checkmark back to normal one idfk how this works maaaan --------- Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
This commit is contained in:
parent
4e8b8862a1
commit
f41752c3f9
@ -66,8 +66,8 @@ function getResultStr(result: RunnerTaskResult | undefined): string {
|
||||
|
||||
const resultStr =
|
||||
result.state === "pass"
|
||||
? chalk.green.bold("✔ Passed")
|
||||
: (result?.duration ?? 0) > 2
|
||||
? chalk.green.bold("✓ Passed")
|
||||
: (result?.duration ?? 0) > 20_000
|
||||
? chalk.cyan.bold("◴ Timed out")
|
||||
: chalk.red.bold("✗ Failed");
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user