Skip to content

Commit

Permalink
feat(tests): update to latest Cypress version
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding-SE committed Feb 7, 2020
1 parent 83423e2 commit dc3afa9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/cypress/integration/example08.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ describe('Example 8 - Header Menu Plugin', () => {
cy.get('#grid8')
.find('.slick-row .slick-cell:nth(2)')
.each($row => {
expect($row.text()).to.be.greaterThan(80);
expect(+$row.text()).to.be.greaterThan(80);
});
});

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": "^3.8.3",
"cypress": "^4.0.0",
"mocha": "^5.2.0",
"mochawesome": "^3.1.2",
"mochawesome-merge": "^1.0.7",
Expand Down

0 comments on commit dc3afa9

Please sign in to comment.