MCPcopy Create free account
hub / github.com/angular/angular / canLoad

Method canLoad

packages/router/test/integration/guards.spec.ts:1862–1870  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1860 static delayedExecutions = 0;
1861 static canLoadCalls = 0;
1862 canLoad() {
1863 DelayedGuard.canLoadCalls++;
1864 return of(true).pipe(
1865 switchMap((v) => new Promise((r) => setTimeout(r, 10)).then(() => v)),
1866 tap(() => {
1867 DelayedGuard.delayedExecutions++;
1868 }),
1869 );
1870 }
1871 }
1872 const router = TestBed.inject(Router);
1873 router.resetConfig([

Callers

nothing calls this directly

Calls 2

setTimeoutFunction · 0.85
thenMethod · 0.65

Tested by

no test coverage detected