From c746531b047db6d858490d159a2f190b677f8683 Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Mon, 13 May 2024 16:47:43 +0900 Subject: [PATCH] test(cli): reduce flakiness of spinner test --- cli/spinner_test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/spinner_test.ts b/cli/spinner_test.ts index ec3017c47ffa..01fa762e0724 100644 --- a/cli/spinner_test.ts +++ b/cli/spinner_test.ts @@ -27,7 +27,7 @@ Deno.test("Spinner constructor accepts spinner", async () => { ]); const actual = normalizeString(text); - assert(actual.startsWith("0 1 2 3 4 5 6 7 8 9")); + assert(actual.startsWith("0 1 2 3 4 5 6")); }); Deno.test("Spinner constructor accepts message", async () => {