Using Angular v1.2.25 and the rails resource pipeline, I am trying to verify that the directive allocation area is indeed updated. Since isolateScope () returns undefined, I expect undefined to be defined ... '
describe("cool directive", function() { beforeEach(module('necessaryModule')); var scope, $rootScope, $compile, elem, baseElement = '<div auto="mock_a" inc="mock_p" method="mock_m" reset-method="mock_r"></div>'; beforeEach(inject(function( _$rootScope_, _$compile_, _$httpBackend_, $http){ $compile = _$compile_; $rootScope = _$rootScope_; scope = $rootScope.$new(); angular.extend(scope, { mock_a: [ {name: "example1"}, {name: "example2"} ], mock_m: function(){ return $http.get('/mockBackend', { params:{ page: scope.mockPage } }); }, mock_r: function() { scope.page = 1; scope.list = []; load(); }, mock_p: 1 }); $httpListGet = _$httpBackend_; $httpListGet.whenPOST('/api/something').respond({}); $httpListGet.whenGET('/mockBackend').respond({name: "example3"}); $httpListGet.whenGET('/mockBackend?page=1').respond({name: "example3"}); $httpListGet.whenGET('/mockBackend?page=2').respond({name: "example4"}); })); var create = function() { elem = angular.element(baseElement); compiledElement = $compile(elem)(scope); elem.scope().$apply(); return compiledElement; }; it("has 'list' defined", function() { var compiledElem = create(); var isolateElemScope = compiledElem.isolateScope(); $rootScope.$apply(); console.log('isolateElemScope',isolateElemScope); expect(isolateElemScope.list).toBeDefined(); });
I expect the scope of directives to be accessible and verified, but I get undefined when I test it. Thanks.
angularjs angularjs-directive jasmine
sjt003
source share