给定一个附加到$routeChangeSuccess事件的处理程序来更新$rootScope上的title属性:
$rootScope.$on('$routeChangeSuccess',function (event,current,prevIoUs) { $rootScope.title = 'My title'; });
it('should set a title on $routeChangeSuccess',function () { $location.path('/contacts'); $rootScope.$apply(); expect($rootScope.title).toBe('My title'); });
但是,$routeChangeSuccess处理程序中的代码在测试中从不执行.它在浏览器中运行应用程序时执行正常并更新标题.
如何在测试中触发$routeChangeSuccess事件?有没有更好的方法来测试附加到$rootScope.$on(‘$routeChangeSuccess’,…)或其他$routeChange事件的任意代码?
尝试自己发送活动.
原文链接:https://www.f2er.com/angularjs/143069.html$rootScope.$broadcast('$routeChangeSuccess',eventData);