issue screen with other Small fixes

This commit is contained in:
Alex beart 2023-03-16 23:22:24 +05:30
parent 69894ac132
commit 58fb99cc5b
15 changed files with 820 additions and 13 deletions

View file

@ -0,0 +1,25 @@
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();
});
});