()
| 1800 | static delayedExecutions = 0; |
| 1801 | static canLoadCalls = 0; |
| 1802 | canLoad() { |
| 1803 | DelayedGuard.canLoadCalls++; |
| 1804 | return of(true).pipe( |
| 1805 | switchMap((v) => new Promise((r) => setTimeout(r, 10)).then(() => v)), |
| 1806 | tap(() => { |
| 1807 | DelayedGuard.delayedExecutions++; |
| 1808 | }), |
| 1809 | ); |
| 1810 | } |
| 1811 | } |
| 1812 | const router = TestBed.inject(Router); |
| 1813 | router.resetConfig([ |
nothing calls this directly
no test coverage detected