import { ComponentFixture, TestBed } from '@angular/core/testing'; import { CarouselComponent } from './carousel.component'; describe('CarouselComponent', () => { let component: CarouselComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ CarouselComponent ] }) .compileComponents(); }); beforeEach(() => { fixture = TestBed.createComponent(CarouselComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });