Skip to content

Commit

Permalink
Merge pull request #266 from shopware/fix-sort-and-check-listing-command
Browse files Browse the repository at this point in the history
Fix sort and check listing command
  • Loading branch information
jleifeld authored Dec 8, 2022
2 parents b907a59 + 9c0ffd4 commit 84cf021
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cypress/support/commands/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -838,8 +838,8 @@ Cypress.Commands.add('sortAndCheckListingAscViaColumn', (

// Assertions to make sure sorting was applied
cy.get('.sw-data-grid__sort-indicator').should('be.visible');
cy.get('.icon--regular-chevron-down-xxs').should('not.exist');
cy.get('.icon--regular-chevron-up-xxs').should('be.visible');
cy.get('.sw-data-grid__sort-indicator .icon--regular-chevron-down-xxs').should('not.exist');
cy.get('.sw-data-grid__sort-indicator .icon--regular-chevron-up-xxs').should('be.visible');
cy.get(rowZeroSelector).should('be.visible');
cy.contains(rowZeroSelector, firstEntry).should('be.visible');
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopware-ag/e2e-testsuite-platform",
"version": "5.0.0",
"version": "5.0.1",
"description": "E2E Testsuite for Shopware 6 using Cypress.js",
"keywords": [
"e2e",
Expand Down

0 comments on commit 84cf021

Please sign in to comment.