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