(type: Type<T>, template: string)
| 862 | } |
| 863 | |
| 864 | function createTestCmp<T>(type: Type<T>, template: string): ComponentFixture<T> { |
| 865 | const view = TestBed.overrideComponent(type, {set: {template}}).createComponent(type); |
| 866 | return view; |
| 867 | } |
| 868 | |
| 869 | function createTestCmpAndDetectChanges<T>(type: Type<T>, template: string): ComponentFixture<T> { |
| 870 | const view = createTestCmp(type, template); |
no test coverage detected
searching dependent graphs…