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