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