@@ -33,7 +33,7 @@ describe('ElementsLoader', () => {
3333 elementsLoader = injector . get ( ElementsLoader ) ;
3434 } ) ;
3535
36- describe ( 'loadContainingCustomElements ()' , ( ) => {
36+ describe ( 'loadContainedCustomElements ()' , ( ) => {
3737 let loadCustomElementSpy : jasmine . Spy ;
3838
3939 beforeEach ( ( ) => loadCustomElementSpy = spyOn ( elementsLoader , 'loadCustomElement' ) ) ;
@@ -47,7 +47,7 @@ describe('ElementsLoader', () => {
4747 <element-b-selector></element-b-selector>
4848 ` ;
4949
50- elementsLoader . loadContainingCustomElements ( hostEl ) ;
50+ elementsLoader . loadContainedCustomElements ( hostEl ) ;
5151 flushMicrotasks ( ) ;
5252
5353 expect ( loadCustomElementSpy ) . toHaveBeenCalledTimes ( 2 ) ;
@@ -63,7 +63,7 @@ describe('ElementsLoader', () => {
6363 <element-b-selector></element-b-selector>
6464 ` ;
6565
66- elementsLoader . loadContainingCustomElements ( hostEl ) ;
66+ elementsLoader . loadContainedCustomElements ( hostEl ) ;
6767 flushMicrotasks ( ) ;
6868
6969 expect ( loadCustomElementSpy ) . toHaveBeenCalledTimes ( 1 ) ;
@@ -80,7 +80,7 @@ describe('ElementsLoader', () => {
8080 ` ;
8181
8282 const log : any [ ] = [ ] ;
83- elementsLoader . loadContainingCustomElements ( hostEl ) . subscribe (
83+ elementsLoader . loadContainedCustomElements ( hostEl ) . subscribe (
8484 v => log . push ( `emitted: ${ v } ` ) ,
8585 e => log . push ( `errored: ${ e } ` ) ,
8686 ( ) => log . push ( 'completed' ) ,
@@ -108,7 +108,7 @@ describe('ElementsLoader', () => {
108108 ` ;
109109
110110 const log : any [ ] = [ ] ;
111- elementsLoader . loadContainingCustomElements ( hostEl ) . subscribe (
111+ elementsLoader . loadContainedCustomElements ( hostEl ) . subscribe (
112112 v => log . push ( `emitted: ${ v } ` ) ,
113113 e => log . push ( `errored: ${ e } ` ) ,
114114 ( ) => log . push ( 'completed' ) ,
0 commit comments