import { TestBed, inject } from '@angular/core/testing'; import { MapSelectionService } from './map-selection.service'; describe('MapSelectionService', () => { beforeEach(() => { TestBed.configureTestingModule({ providers: [MapSelectionService] }); }); it('should be created', inject([MapSelectionService], (service: MapSelectionService) => { expect(service).toBeTruthy(); })); });