给定附加到$ routeChangeSuccess事件的处理程序,以更新$ rootScope上的title属性:
$rootScope.$on('$routeChangeSuccess', function (event, current, previous) {
$rootScope.title = 'My title';
});
在单元测试中,我希望执行路由更改将更新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);
关于angularjs - 如何在Angular单元测试中模拟/触发$ routeChangeSuccess?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22447988/