We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d0baa0 commit 6a9cb27Copy full SHA for 6a9cb27
cypress/e2e/mobile.cy.js
@@ -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
18
+ cy.contains('Sed quo et et fugiat modi');
19
20
21
+});
0 commit comments