import { TestBed, ComponentFixture } from '@angular/core/testing'; export function createGenericTestComponent(html: string, type: { new (...args: any[]): T }): ComponentFixture { TestBed.overrideComponent(type, { set: { template: html } }); const fixture = TestBed.createComponent(type); fixture.detectChanges(); return fixture as ComponentFixture; }