Correct ConverterRegistryService.
This commit is contained in:
parent
2c50fa0713
commit
c4effd4f41
5 changed files with 37 additions and 20 deletions
15
src/app/converter-registry.service.spec.ts
Normal file
15
src/app/converter-registry.service.spec.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
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();
|
||||
}));
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue