| 36 | class Level1BModule {} |
| 37 | |
| 38 | @NgModule({ |
| 39 | imports: [ |
| 40 | RouterModule.forRoot([{path: 'root', redirectTo: ''}]), |
| 41 | Level1AModule, |
| 42 | Level1BModule, |
| 43 | ], |
| 44 | providers: [{provide: APP_BASE_HREF, useValue: '/'}], |
| 45 | }) |
| 46 | class RootModule {} |
| 47 | |
| 48 | TestBed.configureTestingModule({ |
| 49 | imports: [RootModule], |