cypress 12.12.0 → 12.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -110,6 +110,7 @@ function cleanup() {
110
110
  // 'zone.js/testing' is not properly aliasing `it.skip` but it does provide `xit`/`xspecify`
111
111
  // Written up under https://github.com/angular/angular/issues/46297 but is not seeing movement
112
112
  // so we'll patch here pending a fix in that library
113
+ // @ts-ignore Ignore so that way we can bypass semantic error TS7017: Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.
113
114
  globalThis.it.skip = globalThis.xit;
114
115
  let CypressAngularErrorHandler = class CypressAngularErrorHandler {
115
116
  handleError(error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cypress",
3
- "version": "12.12.0",
3
+ "version": "12.14.0",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "postinstall": "node index.js --exec install",
@@ -73,53 +73,53 @@
73
73
  "types": "types",
74
74
  "exports": {
75
75
  ".": {
76
+ "types": "./types/index.d.ts",
76
77
  "import": "./index.mjs",
77
- "require": "./index.js",
78
- "types": "./types/index.d.ts"
78
+ "require": "./index.js"
79
79
  },
80
80
  "./vue": {
81
+ "types": "./vue/dist/index.d.ts",
81
82
  "import": "./vue/dist/cypress-vue.esm-bundler.js",
82
- "require": "./vue/dist/cypress-vue.cjs.js",
83
- "types": "./vue/dist/index.d.ts"
83
+ "require": "./vue/dist/cypress-vue.cjs.js"
84
84
  },
85
85
  "./vue2": {
86
+ "types": "./vue2/dist/index.d.ts",
86
87
  "import": "./vue2/dist/cypress-vue2.esm-bundler.js",
87
- "require": "./vue2/dist/cypress-vue2.cjs.js",
88
- "types": "./vue2/dist/index.d.ts"
88
+ "require": "./vue2/dist/cypress-vue2.cjs.js"
89
89
  },
90
90
  "./package.json": {
91
91
  "import": "./package.json",
92
92
  "require": "./package.json"
93
93
  },
94
94
  "./react": {
95
+ "types": "./react/dist/index.d.ts",
95
96
  "import": "./react/dist/cypress-react.esm-bundler.js",
96
- "require": "./react/dist/cypress-react.cjs.js",
97
- "types": "./react/dist/index.d.ts"
97
+ "require": "./react/dist/cypress-react.cjs.js"
98
98
  },
99
99
  "./react18": {
100
+ "types": "./react18/dist/index.d.ts",
100
101
  "import": "./react18/dist/cypress-react.esm-bundler.js",
101
- "require": "./react18/dist/cypress-react.cjs.js",
102
- "types": "./react18/dist/index.d.ts"
102
+ "require": "./react18/dist/cypress-react.cjs.js"
103
103
  },
104
104
  "./mount-utils": {
105
- "require": "./mount-utils/dist/index.js",
106
- "types": "./mount-utils/dist/index.d.ts"
105
+ "types": "./mount-utils/dist/index.d.ts",
106
+ "require": "./mount-utils/dist/index.js"
107
107
  },
108
108
  "./angular": {
109
+ "types": "./angular/dist/index.d.ts",
109
110
  "import": "./angular/dist/index.js",
110
- "require": "./angular/dist/index.js",
111
- "types": "./angular/dist/index.d.ts"
111
+ "require": "./angular/dist/index.js"
112
112
  },
113
113
  "./svelte": {
114
+ "types": "./svelte/dist/index.d.ts",
114
115
  "import": "./svelte/dist/cypress-svelte.esm-bundler.js",
115
- "require": "./svelte/dist/cypress-svelte.cjs.js",
116
- "types": "./svelte/dist/index.d.ts"
116
+ "require": "./svelte/dist/cypress-svelte.cjs.js"
117
117
  }
118
118
  },
119
119
  "buildInfo": {
120
120
  "commitBranch": "develop",
121
- "commitSha": "236b1816667720e1f0295699a148b84c25d7c04f",
122
- "commitDate": "2023-05-09T17:13:59.000Z",
121
+ "commitSha": "65fe540d931add189375357e0a4485a921642f0e",
122
+ "commitDate": "2023-06-06T21:50:16.000Z",
123
123
  "stable": true
124
124
  },
125
125
  "description": "Cypress is a next generation front end testing tool built for the modern web",