次のコントローラがあります:
.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();
});
});
「割り当てられていないユーザーのリストを作成する必要があります」テストは次のエラーで失敗します。
TypeError: 'undefined' is not a function(evaluating $ browser。$$ checkUrlChange())
どうしてか分かりません。助けてくれてありがとう。
Angular.jsとangular-mocks.jsの間に不一致があると、この問題が発生するようです。2つのファイルが同じバージョンであることを確認してください。
質問に対する元のコメントは無視してください
私はRailsプロジェクトでまったく同じ問題を経験しました。
Angular.jsを1.2.24にアップグレードすると、ティースプーンのテストスイートが失敗し始めました。私はangular.jsのソース/コミットストーリーなどを調べたところ、angularモックを更新するのを忘れていたため、古い1.2.20バージョンを使用していたため、bundle update Rails-assets-angular-mocks
を実行する必要があることに気付きましたこの変更を強制します。)新しいモック(すでに$$checkUrlChange
関数モックを持っています)を適用した後、すべてが機能し始めました。
したがって、古いモックオブジェクトも使用しようとしているようです。