OneQlik/src/app/kyc-approval/issue-add/issue-add.component.spec.ts
2023-03-16 23:22:24 +05:30

25 lines
672 B
TypeScript

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