mirror of
https://github.com/DerTyp7/street-map-typescript.git
synced 2025-10-29 21:02:11 +01:00
17 lines
378 B
TypeScript
17 lines
378 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { OpenLayersService } from './open-layers.service';
|
|
|
|
describe('OpenLayersService', () => {
|
|
let service: OpenLayersService;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({});
|
|
service = TestBed.inject(OpenLayersService);
|
|
});
|
|
|
|
it('should be created', () => {
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|