Files
brewman/overlord/src/app/issue/issue-dialog.component.spec.ts
2020-11-23 17:12:27 +05:30

25 lines
672 B
TypeScript

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