it('should update Date out of range error when minDate is changed', () => {
      const today = new Date();
      const yesterday = new Date();
      yesterday.setDate(today.getDate() - 1);
      component.minDate = today;