gpt4 book ai didi

angularjs - 如何在 Angular 单元测试中模拟/触发 $routeChangeSuccess?

转载 作者:行者123 更新时间:2023-12-03 03:18:08 24 4
gpt4 key购买 nike

给定一个附加到 $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);

关于angularjs - 如何在 Angular 单元测试中模拟/触发 $routeChangeSuccess?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22447988/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com