blob: be23e5a5bda4f24c82a96e2461f4d0b8caa3a12c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 | describe('ngBindHtml', function() {
  beforeEach(module('ngSanitize'));
  it('should set html', inject(function($rootScope, $compile) {
    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) {
    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('');
    });
  }));
});
 |