Correct ConverterRegistryService.

This commit is contained in:
Manuel Friedli 2018-08-31 22:53:50 +02:00
parent 2c50fa0713
commit c4effd4f41
5 changed files with 37 additions and 20 deletions

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