()
| 47 | }); |
| 48 | |
| 49 | async function whenStable(): Promise<void> { |
| 50 | const appRef = injector.get(ApplicationRef); |
| 51 | await firstValueFrom(appRef.isStable.pipe(filter((stable) => stable))); |
| 52 | return; |
| 53 | } |
| 54 | |
| 55 | it('should create a new strategy from the factory', () => { |
| 56 | const strategyFactory = new ComponentNgElementStrategyFactory(TestComponent); |
no test coverage detected
searching dependent graphs…