From 2462d0b9b6a2996f50a95b1897086f03c246c300 Mon Sep 17 00:00:00 2001 From: Xanh Date: Fri, 1 Nov 2024 21:11:36 +0700 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20update=20test=20name?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/helpers.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/helpers.test.ts b/src/utils/helpers.test.ts index aa0a2ec..f9d0509 100644 --- a/src/utils/helpers.test.ts +++ b/src/utils/helpers.test.ts @@ -17,7 +17,7 @@ describe('Utility functions', () => { it('should return "red" for negative numbers', () => { expect(getColor(-5)).toBe('red'); }); - it('should return an empty string for zero', () => { + it('should return "grey" for zero', () => { expect(getColor(0)).toBe('grey'); }); });