converter/src/app/converter-registry.service....

16 lines
441 B
TypeScript

import { TestBed, inject } from '@angular/core/testing';
import { ConverterRegistryService } from './converter-registry.service';
describe('ConverterRegistryService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [ConverterRegistryService]
});
});
it('should be created', inject([ConverterRegistryService], (service: ConverterRegistryService) => {
expect(service).toBeTruthy();
}));
});