Skip to content

Commit b288883

Browse files
committed
Fix filters e2e tests
1 parent ace6f40 commit b288883

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cypress/e2e/list.cy.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -336,17 +336,17 @@ describe('List Page', () => {
336336
});
337337

338338
it('should keep filters when sorting a column', () => {
339-
ListPagePosts.setFilterValue('q', 'quis culpa impedit');
339+
ListPagePosts.setFilterValue('q', 'possimus');
340340
cy.get(ListPagePosts.elements.recordRows).should(el =>
341-
expect(el).to.have.length(1)
341+
expect(el).to.have.length(7)
342342
);
343343

344344
ListPagePosts.toggleColumnSort('title');
345345
ListPagePosts.waitUntilDataLoaded();
346346

347347
cy.get(ListPagePosts.elements.filter('q')).should(
348348
'have.value',
349-
'quis culpa impedit'
349+
'possimus'
350350
);
351351
});
352352
});

0 commit comments

Comments
 (0)