| 304 | |
| 305 | it('should support CanMatch providers on the route', async () => { |
| 306 | @Injectable({providedIn: 'root'}) |
| 307 | class CanMatchGuard { |
| 308 | canMatch() { |
| 309 | return true; |
| 310 | } |
| 311 | } |
| 312 | |
| 313 | const routes = [ |
| 314 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…