test('already strart of the month', () => {
    const date = new Date('2/1/2019 , 6:22:31 PM');
    expect(getMonthStart(date)).toEqual(new Date('2/1/2019 , 6:22:31 PM'));
  });