Fix relative date again

This commit is contained in:
shamoon 2025-01-01 21:38:32 -08:00
parent b0dd77bfd8
commit 75de53eb83
No known key found for this signature in database

View File

@ -42,9 +42,10 @@ describe('CustomDatePipe', () => {
expect(datePipe.transform(notNow, 'relative')).toEqual('Yesterday')
notNow.setDate(now.getDate())
notNow.setMonth(now.getMonth() - 1)
expect(datePipe.transform(notNow, 'relative')).toEqual(
now.getMonth() > 1 ? 'Last month' : 'Last year'
)
if (now.getMonth() === 0) {
notNow.setFullYear(now.getFullYear() - 1)
}
expect(datePipe.transform(notNow, 'relative')).toEqual('Last month')
expect(datePipe.transform(now, 'relative')).toEqual('Just now')
})
})