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') }) })