it('should call the changeMenuStatus function', () => {
      spyOn(service, 'changeMenuStatus');

      service.toggleMenu();
      expect(service.changeMenuStatus).toHaveBeenCalled();