Skip to content

Commit 6a9cb27

Browse files
committed
Add e2e test for infinite pagination
1 parent 0d0baa0 commit 6a9cb27

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

cypress/e2e/mobile.cy.js

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import listPageFactory from '../support/ListPage';
2+
3+
describe('Mobile UI', () => {
4+
const ListPagePosts = listPageFactory('/#/posts');
5+
6+
beforeEach(() => {
7+
window.localStorage.clear();
8+
cy.viewport('iphone-x');
9+
});
10+
11+
describe('Infinite Scroll', () => {
12+
it.only('should load more items when scrolling to the bottom of the page', () => {
13+
ListPagePosts.navigate();
14+
cy.contains('Sed quo et et fugiat modi').should('not.exist');
15+
cy.scrollTo('bottom');
16+
cy.wait(500);
17+
cy.scrollTo('bottom');
18+
cy.contains('Sed quo et et fugiat modi');
19+
});
20+
});
21+
});

0 commit comments

Comments
 (0)