(router: Router, type: Type<T>)
| 859 | } |
| 860 | |
| 861 | async function createRoot<T>(router: Router, type: Type<T>): Promise<ComponentFixture<T>> { |
| 862 | const f = TestBed.createComponent(type); |
| 863 | await advance(f); |
| 864 | router.initialNavigation(); |
| 865 | await advance(f); |
| 866 | return f; |
| 867 | } |
no test coverage detected