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