| 71 | describe('route providers', () => { |
| 72 | it('can provide a guard on a route', async () => { |
| 73 | @Injectable() |
| 74 | class ConfigurableGuard { |
| 75 | static canActivateValue = false; |
| 76 | canActivate() { |
| 77 | return ConfigurableGuard.canActivateValue; |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | TestBed.configureTestingModule({ |
| 82 | imports: [ |
nothing calls this directly
no test coverage detected
searching dependent graphs…