Refactor 3d to own library

This commit is contained in:
Willem Dantuma
2020-10-02 17:20:00 +02:00
parent b00b21e6b8
commit e87affee08
22 changed files with 265 additions and 13 deletions

View File

@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { CommonMap3dService } from './common-map3d.service';
describe('CommonMap3dService', () => {
let service: CommonMap3dService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(CommonMap3dService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});