mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-18 15:50:22 +00:00
49 lines
1.4 KiB
JavaScript
49 lines
1.4 KiB
JavaScript
'use strict';
|
|
|
|
describe('ngCloak', function() {
|
|
var element;
|
|
|
|
|
|
afterEach(function() {
|
|
dealoc(element);
|
|
});
|
|
|
|
|
|
it('should get removed when an element is compiled', inject(function($rootScope, $compile) {
|
|
element = jqLite('<div ng-cloak></div>');
|
|
expect(element.attr('ng-cloak')).toBe('');
|
|
$compile(element);
|
|
expect(element.attr('ng-cloak')).toBeUndefined();
|
|
}));
|
|
|
|
|
|
it('should remove ngCloak class from a compiled element with attribute', inject(
|
|
function($rootScope, $compile) {
|
|
element = jqLite('<div ng-cloak class="foo ng-cloak bar"></div>');
|
|
|
|
expect(element.hasClass('foo')).toBe(true);
|
|
expect(element.hasClass('ng-cloak')).toBe(true);
|
|
expect(element.hasClass('bar')).toBe(true);
|
|
|
|
$compile(element);
|
|
|
|
expect(element.hasClass('foo')).toBe(true);
|
|
expect(element.hasClass('ng-cloak')).toBe(false);
|
|
expect(element.hasClass('bar')).toBe(true);
|
|
}));
|
|
|
|
|
|
it('should remove ngCloak class from a compiled element', inject(function($rootScope, $compile) {
|
|
element = jqLite('<div class="foo ng-cloak bar"></div>');
|
|
|
|
expect(element.hasClass('foo')).toBe(true);
|
|
expect(element.hasClass('ng-cloak')).toBe(true);
|
|
expect(element.hasClass('bar')).toBe(true);
|
|
|
|
$compile(element);
|
|
|
|
expect(element.hasClass('foo')).toBe(true);
|
|
expect(element.hasClass('ng-cloak')).toBe(false);
|
|
expect(element.hasClass('bar')).toBe(true);
|
|
}));
|
|
});
|