Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 4b71bbc

Browse files
committedSep 17, 2013
fix(test): fixed toThrow usage
1 parent 265f0b5 commit 4b71bbc

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed
 

‎test/ng/directive/ngIncludeSpec.js

+10-5
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,16 @@ describe('ngInclude', function() {
6464
}));
6565

6666

67-
it('should NOT use untrusted expressions ', inject(putIntoCache('myUrl', '{{name}} text'),
67+
it('should NOT use untrusted URL expressions ', inject(putIntoCache('myUrl', '{{name}} text'),
6868
function($rootScope, $compile, $sce) {
6969
element = jqLite('<ng:include src="url"></ng:include>');
7070
jqLite(document.body).append(element);
7171
element = $compile(element)($rootScope);
7272
$rootScope.name = 'chirayu';
73-
$rootScope.url = 'myUrl';
74-
expect($rootScope.$digest).toThrow();
73+
$rootScope.url = 'http://example.com/myUrl';
74+
expect(function() { $rootScope.$digest(); }).toThrowMinErr(
75+
'$sce', 'insecurl',
76+
/Blocked loading resource from url not allowed by \$sceDelegate policy. URL: http:\/\/example.com\/myUrl.*/);
7577
jqLite(document.body).html('');
7678
}));
7779

@@ -82,11 +84,14 @@ describe('ngInclude', function() {
8284
jqLite(document.body).append(element);
8385
element = $compile(element)($rootScope);
8486
$rootScope.name = 'chirayu';
85-
$rootScope.url = $sce.trustAsUrl('myUrl');
86-
expect($rootScope.$digest).toThrow();
87+
$rootScope.url = $sce.trustAsUrl('http://example.com/myUrl');
88+
expect(function() { $rootScope.$digest(); }).toThrowMinErr(
89+
'$sce', 'insecurl',
90+
/Blocked loading resource from url not allowed by \$sceDelegate policy. URL: http:\/\/example.com\/myUrl.*/);
8791
jqLite(document.body).html('');
8892
}));
8993

94+
9095
it('should remove previously included text if a falsy value is bound to src', inject(
9196
putIntoCache('myUrl', '{{name}}'),
9297
function($rootScope, $compile) {

0 commit comments

Comments
 (0)
This repository has been archived.