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