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