| 181 | |
| 182 | it('should wait for redirect when initialNavigation = enabledBlocking', async () => { |
| 183 | @Injectable({providedIn: 'root'}) |
| 184 | class Redirect { |
| 185 | constructor(private router: Router) {} |
| 186 | canActivate() { |
| 187 | this.router.navigateByUrl('redirectToMe'); |
| 188 | return false; |
| 189 | } |
| 190 | } |
| 191 | @NgModule({ |
| 192 | imports: [ |
| 193 | BrowserModule, |
nothing calls this directly
no test coverage detected
searching dependent graphs…