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