describe('nextYear', () => {
        it('should set value to next year', () => {
          const year = component.focusDate.get('year');
          component.nextYear();
          expect(component.focusDate.get('year')).toBe(year + 1);