it('should update calendar when year is selected', () => {
        spyOn(component, 'updateViewDays');
        component.date = new Date();
        component.setYear(2020);
        expect(component.updateViewDays).toHaveBeenCalled();