mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 07:40:22 +00:00
13 lines
312 B
JavaScript
13 lines
312 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
describe('$rootElement', function() {
|
||
|
|
it('should publish the bootstrap element into $rootElement', function() {
|
||
|
|
var element = jqLite('<div></div>');
|
||
|
|
var injector = angular.bootstrap(element);
|
||
|
|
|
||
|
|
expect(injector.get('$rootElement')[0]).toBe(element[0]);
|
||
|
|
|
||
|
|
dealoc(element);
|
||
|
|
});
|
||
|
|
});
|