it('should go to first month if visible month is december', () => {
        component.date = new Date(2017, 11, 1);
        component.nextMonth();
        expect(component.date.getMonth()).toBe(0);
    });