it('20 minutes ago', () => {
    expect.hasAssertions();
    const date = toDate(sub(new Date(), { minutes: 20 }));
    expect(formatRelativeDate(date)).toBe('20m');
  });