Back to home page

EIC code displayed by LXR

 
 

    


Warning, /firebird/firebird-ng/src/app/services/geometry.service.spec.ts is written in an unsupported language. File is not indexed.

0001 import { TestBed } from '@angular/core/testing';
0002 
0003 import { GeometryService } from './geometry.service';
0004 import {HttpClientModule} from "@angular/common/http";
0005 
0006 describe('GeometryService', () => {
0007   let service: GeometryService;
0008 
0009   beforeEach(() => {
0010     TestBed.configureTestingModule({
0011       imports: [HttpClientModule], // Add this line
0012     });
0013     service = TestBed.inject(GeometryService);
0014   });
0015 
0016   it('should be created', () => {
0017     expect(service).toBeTruthy();
0018   });
0019 });