From 67ba71ae31ee79d6cbf0ec49438b957cc2203697 Mon Sep 17 00:00:00 2001 From: chizukicn Date: Wed, 25 Oct 2023 11:22:54 +0800 Subject: [PATCH] chore: fix test --- test/utils.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils.test.ts b/test/utils.test.ts index c77cd20..fa632e8 100644 --- a/test/utils.test.ts +++ b/test/utils.test.ts @@ -11,6 +11,6 @@ describe("utils test", () => { const components = getColorComponents({ primary: "rgb(255,0,0)" }, "light", "hsl"); - expect(components.light.primary).toEqual("0,100%,50%"); + expect(components.light.primary).toEqual("0 100% 50%"); }); });