From f41752c3f9b6a619b6958333d9dfe8688701ab1c Mon Sep 17 00:00:00 2001 From: Bertie690 <136088738+Bertie690@users.noreply.github.com> Date: Sat, 1 Nov 2025 19:09:36 -0400 Subject: [PATCH] [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> --- test/test-utils/setup/test-end-log.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test-utils/setup/test-end-log.ts b/test/test-utils/setup/test-end-log.ts index 5be8299b124..a230cccca11 100644 --- a/test/test-utils/setup/test-end-log.ts +++ b/test/test-utils/setup/test-end-log.ts @@ -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");