| 75 | |
| 76 | describe('configurations with canLoad guard', () => { |
| 77 | @NgModule({ |
| 78 | declarations: [LazyLoadedCmp], |
| 79 | providers: [ |
| 80 | { |
| 81 | provide: ROUTES, |
| 82 | multi: true, |
| 83 | useValue: [{path: 'LoadedModule1', component: LazyLoadedCmp}], |
| 84 | }, |
| 85 | ], |
| 86 | }) |
| 87 | class LoadedModule {} |
| 88 | |
| 89 | beforeEach(() => { |
| 90 | TestBed.configureTestingModule({ |
nothing calls this directly
no test coverage detected