describe('formatDate', () => {
  it('should return date string', () => {
    const date = new Date('2020-03-06 14:00');
    expect(formatDate(date)).toEqual('2020-03-06');
  });