cic-staff-client/src/app/_services/location.service.spec.ts

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();
});
});