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