From bc90ccc5551f184a683128def772652ad74c65e3 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 1 Mar 2025 09:54:03 -0800 Subject: [PATCH] Fix: fix date pipe test for day after February --- src-ui/src/app/pipes/custom-date.pipe.spec.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src-ui/src/app/pipes/custom-date.pipe.spec.ts b/src-ui/src/app/pipes/custom-date.pipe.spec.ts index aef722cf9..c8a0e8749 100644 --- a/src-ui/src/app/pipes/custom-date.pipe.spec.ts +++ b/src-ui/src/app/pipes/custom-date.pipe.spec.ts @@ -45,7 +45,9 @@ describe('CustomDatePipe', () => { if (now.getMonth() === 0) { notNow.setFullYear(now.getFullYear() - 1) } - expect(datePipe.transform(notNow, 'relative')).toEqual('Last month') + expect(['Last month', '4 weeks ago']).toContain( + datePipe.transform(notNow, 'relative') + ) expect(datePipe.transform(now, 'relative')).toEqual('Just now') }) })