SpyNgModuleFactoryLoader

Allows to simulate the loading of ng modules in tests.

查看"说明"...

      
      class SpyNgModuleFactoryLoader implements NgModuleFactoryLoader {
  stubbedModules: {...}
  load(path: string): Promise<NgModuleFactory<any>>
}
    

说明

const loader = TestBed.get(NgModuleFactoryLoader); @Component({template: 'lazy-loaded'}) class LazyLoadedComponent {} @NgModule({ declarations: [LazyLoadedComponent], imports: [RouterModule.forChild([{path: 'loaded', component: LazyLoadedComponent}])] }) class LoadedModule {} // sets up stubbedModules loader.stubbedModules = {lazyModule: LoadedModule}; router.resetConfig([ {path: 'lazy', loadChildren: 'lazyModule'}, ]); router.navigateByUrl('/lazy/loaded');
      
      
  1. const loader = TestBed.get(NgModuleFactoryLoader);
  2.  
  3. @Component({template: 'lazy-loaded'})
  4. class LazyLoadedComponent {}
  5. @NgModule({
  6. declarations: [LazyLoadedComponent],
  7. imports: [RouterModule.forChild([{path: 'loaded', component: LazyLoadedComponent}])]
  8. })
  9.  
  10. class LoadedModule {}
  11.  
  12. // sets up stubbedModules
  13. loader.stubbedModules = {lazyModule: LoadedModule};
  14.  
  15. router.resetConfig([
  16. {path: 'lazy', loadChildren: 'lazyModule'},
  17. ]);
  18.  
  19. router.navigateByUrl('/lazy/loaded');

属性

属性说明
stubbedModules: { [path: string]: any; }

方法

load(path: string): Promise<NgModuleFactory<any>>
      
      load(path: string): Promise<NgModuleFactory<any>>
    
参数
path string
返回值

Promise<NgModuleFactory<any>>