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