mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-16 23:30:23 +00:00
Create build for other modules as well (ngResource, ngCookies):
- wrap into a function
- add license
- add version
Breaks `$sanitize` service, `ngBindHtml` directive and `linky` filter were moved to the `ngSanitize` module. Apps that depend on any of these will need to load `angular-sanitize.js` and include `ngSanitize` in their dependency list: `var myApp = angular.module('myApp', ['ngSanitize']);`
25 lines
868 B
JavaScript
25 lines
868 B
JavaScript
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('');
|
|
});
|
|
}));
|
|
});
|