Skip to content

Commit

Permalink
fix(tests): fix failing Cypress E2E from last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding-SE committed Mar 17, 2020
1 parent 00b0751 commit 72870f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/cypress/integration/example01.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ describe('Example 1 - Basic Grids', () => {
.click();
});

it('should have no sorting in 2nd grid', () => {
it('should have no sorting in 2nd grid (back to default sorted by id)', () => {
let gridUid = '';
const grid2Tasks = ['Task 0', 'Task 1', 'Task 10', 'Task 100', 'Task 101'];
const grid2Tasks = ['Task 0', 'Task 1', 'Task 2', 'Task 3', 'Task 4'];

cy.get('#grid2')
.should(($grid) => {
Expand Down
2 changes: 1 addition & 1 deletion test/cypress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"author": "Ghislain B.",
"license": "MIT",
"devDependencies": {
"cypress": "^4.0.2",
"cypress": "^4.2.0",
"mocha": "^5.2.0",
"mochawesome": "^3.1.2",
"mochawesome-merge": "^1.0.7",
Expand Down

0 comments on commit 72870f4

Please sign in to comment.