本文介绍了茉莉测试失败,不确定是不是一个函数(评估$浏览器。$$ checkUrlChange())的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有以下控制器:
.controller('ProjectUserAddCtrl', ['$scope', 'ProjectUser', '$q', 'i18nNotifications',
function($scope, ProjectUser, $q, i18nNotifications) {
var buildUnassignedUsers = function(users, project) {
var unassignedUsers = [];
angular.forEach(users, function(user) {
var match;
angular.forEach(project.projectUsers, function(projectUser) {
if(match) {return;}
if(projectUser.user.id === user.id) {
match = true;
}
});
if(!match) {
unassignedUsers.push(user);
}
});
$scope.unassignedUsers = unassignedUsers;
};
$q.all([
$scope.users,
$scope.project
]).then(function(result) {
buildUnassignedUsers($scope.users, $scope.project);
$scope.$watch('project', function(newVal) {
buildUnassignedUsers($scope.users, $scope.project); }, true
);
});
}]);
和在茉莉花如下测试:
describe('ProjectUserAddCtrl', function() {
var ctrl;
beforeEach(function(){
$scope.users = [];
$scope.project = {
projectUsers: []
};
ctrl = $controller('ProjectUserAddCtrl', {$scope:$scope, ProjectUser:ProjectUser, $q:$q, i18nNotifications:i18nNotifications});
});
it('should create a new instance', function() {
expect(ctrl).toBeDefined();
});
// this test fails!
it('should create a list of unassigned users', function() {
$scope.$apply(); // need to call apply to resolve promises
expect($scope.unassignedUsers).toBeDefined();
});
});
应建立未分配的用户列表测试失败,此错误:
'should create a list of unassigned users' test fails with this error:
类型错误:未定义不是一个函数(评估$浏览器$$ checkUrlChange())
TypeError: 'undefined' is not a function(evaluating $browser.$$checkUrlChange())
我真的不知道为什么。任何帮助AP preciated。
I really have no idea why. Any help appreciated.
推荐答案
看来,当你有angular.js和角mocks.js之间不匹配,确保这两个文件是相同版本的这个问题发生的情况。
It seems this issue happens when you have mismatch between angular.js and angular-mocks.js Make sure the two files are of the same version.
请忽略我原来的问题评论
Please ignore my original comment to the question
这篇关于茉莉测试失败,不确定是不是一个函数(评估$浏览器。$$ checkUrlChange())的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!