()
| 2438 | tap(() => guardDone.push('guard3')), |
| 2439 | ); |
| 2440 | const guard4: CanActivateFn = () => |
| 2441 | of(true).pipe( |
| 2442 | switchMap((v) => new Promise((r) => setTimeout(r, 6)).then(() => v)), |
| 2443 | tap(() => guardDone.push('guard4')), |
| 2444 | ); |
| 2445 | const router = TestBed.inject(Router); |
| 2446 | router.resetConfig([ |
| 2447 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…