mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 07:40:22 +00:00
Add "var" so element is local instead of global Strict mode doesn't allow undeclared global vars, and these really should be local anyway.
28 lines
892 B
JavaScript
28 lines
892 B
JavaScript
'use strict';
|
|
|
|
|
|
describe('ngBindHtml', function() {
|
|
beforeEach(module('ngSanitize'));
|
|
|
|
it('should set html', inject(function($rootScope, $compile) {
|
|
var element = $compile('<div ng-bind-html="html"></div>')($rootScope);
|
|
$rootScope.html = '<div unknown>hello</div>';
|
|
$rootScope.$digest();
|
|
expect(angular.lowercase(element.html())).toEqual('<div>hello</div>');
|
|
}));
|
|
|
|
|
|
it('should reset html when value is null or undefined', inject(function($compile, $rootScope) {
|
|
var element = $compile('<div ng-bind-html="html"></div>')($rootScope);
|
|
|
|
angular.forEach([null, undefined, ''], function(val) {
|
|
$rootScope.html = 'some val';
|
|
$rootScope.$digest();
|
|
expect(angular.lowercase(element.html())).toEqual('some val');
|
|
|
|
$rootScope.html = val;
|
|
$rootScope.$digest();
|
|
expect(angular.lowercase(element.html())).toEqual('');
|
|
});
|
|
}));
|
|
});
|