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