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