converter/src/app/input-component-manager.ser...

16 lines
466 B
TypeScript

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