Skip to content

Commit 119099f

Browse files
authored
chore(deps): update cypress to 14.0.0 (#1343)
* chore(deps): update cypress to 14.0.0 * test: migrate ct react18 to react
1 parent b86ab8d commit 119099f

File tree

52 files changed

+759
-748
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+759
-748
lines changed

.github/workflows/example-install-only.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
key: my-cache-${{ runner.os }}-${{ hashFiles('package-lock.json') }}
3131

3232
- name: Install Cypress 📥
33-
run: npm install cypress@13.17.0 --save-dev
33+
run: npm install cypress@14.0.0 --save-dev
3434

3535
- name: Cypress tests 🧪
3636
uses: ./

examples/basic-pnpm/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@
88
},
99
"private": true,
1010
"devDependencies": {
11-
"cypress": "13.17.0"
11+
"cypress": "14.0.0"
1212
},
1313
"pnpm": {
14-
"onlyBuiltDependencies": ["cypress"]
14+
"onlyBuiltDependencies": [
15+
"cypress"
16+
]
1517
}
1618
}

examples/basic-pnpm/pnpm-lock.yaml

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/basic/package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/basic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
},
99
"private": true,
1010
"devDependencies": {
11-
"cypress": "13.17.0"
11+
"cypress": "14.0.0"
1212
}
1313
}

examples/browser/package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"private": true,
1515
"devDependencies": {
16-
"cypress": "13.17.0",
16+
"cypress": "14.0.0",
1717
"image-size": "^1.0.2"
1818
}
1919
}

examples/component-tests/cypress/support/component.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ import './commands'
1919
// Alternatively you can use CommonJS syntax:
2020
// require('./commands')
2121

22-
import { mount } from 'cypress/react18'
22+
import { mount } from 'cypress/react'
2323

2424
Cypress.Commands.add('mount', mount)
2525

2626
// Example use:
27-
// cy.mount(<MyComponent />)
27+
// cy.mount(<MyComponent />)

examples/component-tests/package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/component-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"@types/react": "^18.3.3",
1818
"@types/react-dom": "^18.3.0",
1919
"@vitejs/plugin-react": "^4.3.1",
20-
"cypress": "13.17.0",
20+
"cypress": "14.0.0",
2121
"vite": "^5.4.6"
2222
}
2323
}

0 commit comments

Comments
 (0)