[ACS-5640] Changing from moment to date-fns. (#8796)

This commit is contained in:
Aayush Rohila
2023-08-25 13:52:51 +05:30
committed by GitHub
parent 87e57272fa
commit 837b3b1b92
3 changed files with 8 additions and 8 deletions

View File

@@ -118,7 +118,7 @@ describe('CommentListComponent', () => {
await fixture.whenStable();
element = fixture.nativeElement.querySelector('.adf-comment-message-time');
expect(element.innerText).toContain('a few seconds ago');
expect(element.innerText).toContain('less than a minute ago');
});
it('comment date time should start with Yesterday when comment date is yesterday', async () => {
@@ -130,7 +130,7 @@ describe('CommentListComponent', () => {
await fixture.whenStable();
element = fixture.nativeElement.querySelector('.adf-comment-message-time');
expect(element.innerText).toContain('a day ago');
expect(element.innerText).toContain('1 day ago');
});
it('comment date time should not start with Today/Yesterday when comment date is before yesterday', async () => {