| 138 | const testModule = TestBed.inject(NgModuleRef) as any; |
| 139 | const events: Array<RouteConfigLoadStart | RouteConfigLoadEnd> = []; |
| 140 | @NgModule({ |
| 141 | declarations: [LazyLoadedCmp], |
| 142 | imports: [RouterModule.forChild([{path: 'LoadedModule2', component: LazyLoadedCmp}])], |
| 143 | }) |
| 144 | class LoadedModule2 {} |
| 145 | |
| 146 | @NgModule({ |
| 147 | imports: [ |