()
| 2498 | tap(() => guardDone.push('guard3')), |
| 2499 | ); |
| 2500 | const guard4: CanActivateFn = () => |
| 2501 | of(true).pipe( |
| 2502 | switchMap((v) => new Promise((r) => setTimeout(r, 6)).then(() => v)), |
| 2503 | tap(() => guardDone.push('guard4')), |
| 2504 | ); |
| 2505 | const router = TestBed.inject(Router); |
| 2506 | router.resetConfig([ |
| 2507 | { |
nothing calls this directly
no test coverage detected