レイアウト コントローラーからの検索イベントでコントローラーにリスナーを追加したときに、このテスト エラーが発生しました。
これはリスナー(ファクトリに配置)であり、コントローラーで呼び出しました:
function listenToSearchRequest ( viewModel, scope ) {
scope.$on( 'search:view', function ( event, data ) {
viewModel.pageDetails.search = data;
getRequest( viewModel, scope );
} );
}
すべてのテストは機能していますが、「search:view」イベントをリッスンしようとして以来、取得し続けています:
TypeError: 'undefined' is not a function (evaluating 'scope.$on')
私のテストの小さなスニペット:
describe( 'User Classification Group Controller', function () {
var controller;
var $scope;
var rs;
var userClassifications = mockData.getMockPaginatedUserClassifications();
beforeEach( function () {
bard.appModule( 'app.admin' );
bard.inject( '$controller', '$q', '$rootScope', '$log', 'authService', '$httpBackend', '$state', 'toastr', 'FORM_MSGS' );
} );
bard.verifyNoOutstandingHttpRequests();
describe( 'when $scope.$parent is not available', function () {
beforeEach( function () {
$rootScope = {};
$scope = $rootScope;
controller = $controller( 'ClassificationGroup', {
'$scope' : $scope
} );
} );
beforeEach( function () {
$httpBackend.whenGET( '/api/userclassificationgroups/get_all_paginate/10?page=1&search=&sortField=&sortType=' ).respond( 200, userClassifications );
$httpBackend.flush();
} );
it( 'should not set user classification group count', function () {
expect( $scope.$parent ).to.equal( undefined );
} );
} );
} );
これはスローされたエラーです:
PhantomJS 1.9.8 (Linux 0.0.0) User Classification Group Controller when $scope.$parent is not available "before each" hook for "should not set user classification group count" FAILED
TypeError: 'undefined' is not a function (evaluating 'scope.$on')
scope.$on をモックして、すべてのテストでこのエラーを回避するにはどうすればよいですか?