cic-staff-client/src/app/_services/location.service.spec.ts
2021-02-17 15:49:04 +03:00

17 lines
380 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { LocationService } from '@app/_services/location.service';
describe('LocationService', () => {
let service: LocationService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(LocationService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});