angularjs – 如何在角度单元测试中模拟/触发$routeChangeSuccess?

前端之家收集整理的这篇文章主要介绍了angularjs – 如何在角度单元测试中模拟/触发$routeChangeSuccess?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。



给定一个附加到$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事件的任意代码

尝试自己发送活动.
$rootScope.$broadcast('$routeChangeSuccess',eventData);
原文链接:https://www.f2er.com/angularjs/143069.html

猜你在找的Angularjs相关文章