it('3 hours ago', () => {
    expect.hasAssertions();
    const date = toDate(sub(new Date(), { hours: 3 }));
    expect(formatRelativeDate(date)).toBe('3h');
  });