| 185 | |
| 186 | describe('should work when given a class', () => { |
| 187 | class AlwaysTrue { |
| 188 | canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): boolean { |
| 189 | return true; |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | beforeEach(() => { |
| 194 | TestBed.configureTestingModule({providers: [AlwaysTrue]}); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…