Skip to content

Commit

Permalink
feat: Support cypress@13
Browse files Browse the repository at this point in the history
- Add warnings for failed uploads
- Support cypress@13
- Add compatibility tests

BREAKING CHANGE:
- Dropping support for NodeJS 14, the minimal supported version is NodeJS 16+
- The return type of `run` API call changes to support cypress 12 and 13 formats
- Bumping major version to emphasize the required addition of support file
  • Loading branch information
agoldis committed Sep 19, 2023
1 parent c2ddfb3 commit 693bf4d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion examples/webapp/cypress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ module.exports = defineConfig({
: "l4zuz8",
baseUrl: "https://todomvc.com/examples/vanillajs",
supportFile: "cypress/support/e2e.ts",
specPattern: ["cypress/e2e/*.js", "cypress/e2e_smoke/*.js"],
videoUploadOnPasses: true,
specPattern: [
"cypress/e2e/*.js",
"cypress/e2e_smoke/*.js",
"cypress/e2e_reference/*.js",
],
setupNodeEvents(on, config) {
require("@cypress/grep/src/plugin")(config);
return currents(on, config);
Expand Down
2 changes: 1 addition & 1 deletion packages/cypress-cloud/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cypress-cloud",
"version": "1.10.0-beta.5",
"version": "1.10.0-beta.6",
"main": "./dist/index.js",
"author": "Currents Software Inc",
"homepage": "https://github.com/currents-dev/cypress-cloud",
Expand Down

0 comments on commit 693bf4d

Please sign in to comment.