describe('addMonths ', () => {
  const date = new Date('2/21/2019, 2:22:31 PM');
  test('same year', () => {
    const newDate = addMonths(date, 2);
    expect(newDate).toEqual(new Date('4/21/2019, 2:22:31 PM'));