| 572 | |
| 573 | it('should support SkipSelf', () => { |
| 574 | @NgModule({ |
| 575 | providers: [ |
| 576 | {provide: aTok, useValue: 'aValue'}, |
| 577 | {provide: 'dep', useValue: 'depValue'}, |
| 578 | ], |
| 579 | }) |
| 580 | class MyModule {} |
| 581 | |
| 582 | TestBed.overrideProvider(aTok, { |
| 583 | useFactory: (dep: any) => `mockA: ${dep}`, |
nothing calls this directly
no test coverage detected
searching dependent graphs…