(delayMs: number)
| 1830 | |
| 1831 | describe('should run CanLoad guards concurrently', () => { |
| 1832 | function delayObservable(delayMs: number): Observable<boolean> { |
| 1833 | return of(delayMs).pipe( |
| 1834 | switchMap((v) => new Promise((r) => setTimeout(r, delayMs)).then(() => v)), |
| 1835 | mapTo(true), |
| 1836 | ); |
| 1837 | } |
| 1838 | |
| 1839 | let log: string[]; |
| 1840 | const guard1 = () => { |
no test coverage detected
searching dependent graphs…