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

17 lines
367 B
TypeScript
Raw Normal View History

2021-04-20 10:28:40 +02:00
import { TestBed } from '@angular/core/testing';
import { RegistryService } from './registry.service';
describe('RegistryService', () => {
let service: RegistryService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(RegistryService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});