Fix UT issue about it should support pagination

Signed-off-by: Yogi_Wang <yawang@vmware.com>
This commit is contained in:
Yogi_Wang 2019-07-23 12:19:37 +08:00
parent e8565a4539
commit 93c336c17d

View File

@ -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();