(r: boolean)
| 130 | const fixture = await createRoot(router, RootCmp); |
| 131 | let result = null as boolean | null; |
| 132 | const callback = (r: boolean) => (result = r); |
| 133 | router.resetConfig([{path: 'user/:name', component: UserCmp}]); |
| 134 | |
| 135 | router.navigateByUrl('/user/frodo').then(callback); |
no outgoing calls
no test coverage detected
searching dependent graphs…