()
| 2433 | ); |
| 2434 | const guard2: CanActivateFn = () => of(true).pipe(tap(() => guardDone.push('guard2'))); |
| 2435 | const guard3: CanActivateFn = () => |
| 2436 | of(true).pipe( |
| 2437 | switchMap((v) => new Promise((r) => setTimeout(r, 2)).then(() => v)), |
| 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)), |
nothing calls this directly
no test coverage detected
searching dependent graphs…