fix(ngInclude): fire $includeContentLoaded on proper (child) scope

This commit is contained in:
Vojta Jina
2012-03-30 13:54:43 -07:00
parent 5f70d615a5
commit 199ac26986
2 changed files with 4 additions and 3 deletions

View File

@@ -60,9 +60,10 @@ describe('ng-include', function() {
}));
it('should fire $includeContentLoaded event after linking the content', inject(
it('should fire $includeContentLoaded event on child scope after linking the content', inject(
function($rootScope, $compile, $templateCache) {
var contentLoadedSpy = jasmine.createSpy('content loaded').andCallFake(function() {
var contentLoadedSpy = jasmine.createSpy('content loaded').andCallFake(function(event) {
expect(event.targetScope.$parent).toBe($rootScope);
expect(element.text()).toBe('partial content');
});