import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { InputGroupComponent } from './input-group.component'; describe('InputGroupComponent', () => { let component: InputGroupComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ InputGroupComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(InputGroupComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });