We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ace6f40 commit b288883Copy full SHA for b288883
cypress/e2e/list.cy.js
@@ -336,17 +336,17 @@ describe('List Page', () => {
336
});
337
338
it('should keep filters when sorting a column', () => {
339
- ListPagePosts.setFilterValue('q', 'quis culpa impedit');
+ ListPagePosts.setFilterValue('q', 'possimus');
340
cy.get(ListPagePosts.elements.recordRows).should(el =>
341
- expect(el).to.have.length(1)
+ expect(el).to.have.length(7)
342
);
343
344
ListPagePosts.toggleColumnSort('title');
345
ListPagePosts.waitUntilDataLoaded();
346
347
cy.get(ListPagePosts.elements.filter('q')).should(
348
'have.value',
349
- 'quis culpa impedit'
+ 'possimus'
350
351
352
0 commit comments