From dcd50d53596e92c258fc848db71e79801af3cbbc Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 11 Mar 2025 00:35:18 -0700 Subject: [PATCH] Fix: one more february relative date fix --- src-ui/src/app/pipes/custom-date.pipe.spec.ts | 3 ++- 1 file changed, 2 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 c8a0e8749..ebe480f08 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,8 @@ describe('CustomDatePipe', () => { if (now.getMonth() === 0) { notNow.setFullYear(now.getFullYear() - 1) } - expect(['Last month', '4 weeks ago']).toContain( + // weird options are for february... + expect(['Last month', '4 weeks ago', '3 weeks ago']).toContain( datePipe.transform(notNow, 'relative') ) expect(datePipe.transform(now, 'relative')).toEqual('Just now')