Skip to content

Commit

Permalink
test: remove a skipped flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
tomivirkki committed Dec 16, 2021
1 parent 5edc53c commit dc503e6
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions test/data-provider.html
Original file line number Diff line number Diff line change
Expand Up @@ -671,23 +671,6 @@
}, loadDebounceTime);
});

// FIXME: flaky
it.skip('should call dataprovider multiple times to load all items', done => {
container.dataProvider.reset();
grid.style.fontSize = '12px';
grid.pageSize = 10;
flushGrid(grid);

setTimeout(() => {
// assuming grid has about 30 items
expect(container.dataProvider.callCount).to.be.above(2);
for (var i = 0; i < container.dataProvider.callCount; i++) {
expect(container.dataProvider.getCall(i).args[0].page).to.eql(i);
}
done();
}, loadDebounceTime);
});

it('should always load visible items', done => {
grid.pageSize = 10;

Expand Down

0 comments on commit dc503e6

Please # to comment.