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