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