$scope.$watch のリスナー関数をスパイしようとすると、決してスパイオンを呼び出さないようなものです
http://jsfiddle.net/b8LoLwLb/1/
私のコントローラー
angular.module('angularApp')
.controller('MainCtrl', function ($scope) {
$scope.name = '';
this.changeName = function () {
console.log('the name has change to ' + $scope.name);
};
$scope.$watch('name', this.changeName);
});
私のテスト
describe('Controller: MainCtrl', function () {
// load the controller's module
beforeEach(module('angularApp'));
var MainCtrl,
scope;
// Initialize the controller and a mock scope
beforeEach(inject(function ($controller, $rootScope) {
scope = $rootScope.$new();
MainCtrl = $controller('MainCtrl', {
$scope: scope
});
}));
it('should check if watcher was triggered', function () {
// Spy the listener funtion
spyOn(MainCtrl, 'changeName');
// Change the watched property
scope.name = 'facu';
// Digest to trigger the watcher.
scope.$digest();
// Expect the function to have been called
expect(MainCtrl.changeName).toHaveBeenCalled();
});
});
問題は、関数をスパイする代わりに、テストが関数を実行してコンソール ログを出力することです。
angular 1.4を使用しています