import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { MapboxComponent } from './mapbox.component'; describe('MapboxComponent', () => { let component: MapboxComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ MapboxComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(MapboxComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should be created', () => { expect(component).toBeTruthy(); }); });