2018-05-25 13:49:00 +00:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { IssueDialogComponent } from './issue-dialog.component';
|
|
|
|
|
|
|
|
describe('IssueDialogComponent', () => {
|
|
|
|
let component: IssueDialogComponent;
|
|
|
|
let fixture: ComponentFixture<IssueDialogComponent>;
|
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2020-10-01 15:21:22 +00:00
|
|
|
declarations: [IssueDialogComponent],
|
|
|
|
}).compileComponents();
|
2018-05-25 13:49:00 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
fixture = TestBed.createComponent(IssueDialogComponent);
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|