(compType: Type<any>, template: string)
| 3096 | }); |
| 3097 | |
| 3098 | function initWithTemplate(compType: Type<any>, template: string) { |
| 3099 | TestBed.overrideComponent(compType, {set: new Component({template})}); |
| 3100 | const fixture = TestBed.createComponent(compType); |
| 3101 | fixture.detectChanges(); |
| 3102 | return fixture; |
| 3103 | } |
| 3104 | |
| 3105 | @Component({ |
| 3106 | selector: 'local-ref-query-component', |
no test coverage detected
searching dependent graphs…