(router: Router)
| 2169 | it('can return UrlTree from CanMatchFn guard', async () => { |
| 2170 | const canMatchTeamSection = new InjectionToken('CanMatchTeamSection'); |
| 2171 | const canMatchFactory: (router: Router) => CanMatchFn = (router: Router) => () => |
| 2172 | router.createUrlTree(['/team/1']); |
| 2173 | |
| 2174 | TestBed.overrideProvider(canMatchTeamSection, { |
| 2175 | useFactory: canMatchFactory, |
nothing calls this directly
no test coverage detected