Fixture for debugging and testing a component.
class ComponentFixture<T> { debugElement: DebugElement; componentInstance: T; nativeElement: any; elementRef: ElementRef<any>; changeDetectorRef: ChangeDetectorRef; ngZone: NgZone | null; override componentRef: ComponentRef<T>; detectChanges(checkNoChanges?: boolean): void; checkNoChanges(): void; autoDetectChanges(autoDetect?: boolean): void; isStable(): boolean; whenStable(): Promise<any>; getDeferBlocks(): Promise<DeferBlockFixture[]>; whenRenderingDone(): Promise<any>; destroy(): void;}