mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-04-07 00:21:08 +00:00
11 lines
254 B
JavaScript
11 lines
254 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
describe('ngCsp', function() {
|
||
|
|
|
||
|
|
it('it should turn on CSP mode in $sniffer', inject(function($sniffer, $compile) {
|
||
|
|
expect($sniffer.csp).toBe(false);
|
||
|
|
$compile('<div ng-csp></div>');
|
||
|
|
expect($sniffer.csp).toBe(true);
|
||
|
|
}));
|
||
|
|
});
|