(componentRef: ComponentRef<T>)
| 219 | }); |
| 220 | |
| 221 | async function renderComponent<T>(componentRef: ComponentRef<T>): Promise<ApplicationRef> { |
| 222 | const appRef = TestBed.inject(ApplicationRef); |
| 223 | appRef.attachView(componentRef.hostView); |
| 224 | await appRef.whenStable(); |
| 225 | return appRef; |
| 226 | } |
no test coverage detected