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