2
Fork 0
definma-ui/src/app/services/autocomplete.service.spec.ts

17 lines
387 B
TypeScript

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