mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-23 10:45:45 +01:00
Merge pull request #8370 from jwangyangls/fixUtIssue
Fix UT issue about it should support pagination
This commit is contained in:
commit
de6c2d51cf
@ -11,7 +11,7 @@ import { FilterComponent } from '../filter/filter.component';
|
||||
|
||||
import { click } from '../utils';
|
||||
import { of } from 'rxjs';
|
||||
import { startWith, delay } from 'rxjs/operators';
|
||||
import { delay } from 'rxjs/operators';
|
||||
|
||||
describe('RecentLogComponent (inline template)', () => {
|
||||
let component: RecentLogComponent;
|
||||
@ -127,7 +127,7 @@ describe('RecentLogComponent (inline template)', () => {
|
||||
}));
|
||||
|
||||
// Will fail after upgrade to angular 6. todo: need to fix it.
|
||||
xit('should support pagination', async(() => {
|
||||
it('should support pagination', () => {
|
||||
fixture.detectChanges();
|
||||
|
||||
fixture.whenStable().then(() => {
|
||||
@ -136,7 +136,7 @@ describe('RecentLogComponent (inline template)', () => {
|
||||
let el: HTMLButtonElement = fixture.nativeElement.querySelector('.pagination-next');
|
||||
expect(el).toBeTruthy();
|
||||
el.click();
|
||||
|
||||
jasmine.clock().tick(100);
|
||||
fixture.detectChanges();
|
||||
|
||||
fixture.whenStable().then(() => {
|
||||
@ -147,7 +147,7 @@ describe('RecentLogComponent (inline template)', () => {
|
||||
expect(els.length).toEqual(4);
|
||||
});
|
||||
});
|
||||
}));
|
||||
});
|
||||
|
||||
it('should support filtering list by keywords', async(() => {
|
||||
fixture.detectChanges();
|
||||
|
Loading…
Reference in New Issue
Block a user