Fix: one more february relative date fix

This commit is contained in:
shamoon 2025-03-11 00:35:18 -07:00
parent 376823598e
commit dcd50d5359
No known key found for this signature in database

View File

@ -45,7 +45,8 @@ describe('CustomDatePipe', () => {
if (now.getMonth() === 0) { if (now.getMonth() === 0) {
notNow.setFullYear(now.getFullYear() - 1) 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') datePipe.transform(notNow, 'relative')
) )
expect(datePipe.transform(now, 'relative')).toEqual('Just now') expect(datePipe.transform(now, 'relative')).toEqual('Just now')