[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:
Bertie690 2025-11-01 19:09:36 -04:00 committed by GitHub
parent 4e8b8862a1
commit f41752c3f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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");