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