import { ComponentFixture, TestBed } from '@angular/core/testing'; import { <%=ClassName%> } from './<%=filePrefix%>'; describe('<%=ClassName%>', () => { let component: <%=ClassName%>; let fixture: ComponentFixture<<%=ClassName%>>; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [IgxCarouselModule, <%=ClassName%>] }) .compileComponents(); }); beforeEach(() => { fixture = TestBed.createComponent(<%=ClassName%>); component = fixture.componentInstance; fixture.detectChanges(); }); it("should create", () => { expect(component).toBeTruthy(); }); });