cypress 15.8.1 → 15.9.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.
- package/angular/angular/dist/index.js +1 -1
- package/angular/dist/index.js +1 -1
- package/angular-zoneless/angular-zoneless/dist/index.js +1 -1
- package/angular-zoneless/dist/index.js +1 -1
- package/dist/errors.js +8 -10
- package/dist/exec/open.js +3 -6
- package/mount-utils/mount-utils/package.json +1 -0
- package/mount-utils/package.json +1 -0
- package/package.json +4 -4
- package/react/dist/cypress-react.cjs.js +1 -1
- package/react/dist/cypress-react.esm-bundler.js +1 -1
- package/react/package.json +1 -4
- package/react/react/dist/cypress-react.cjs.js +1 -1
- package/react/react/dist/cypress-react.esm-bundler.js +1 -1
- package/react/react/package.json +1 -4
- package/svelte/dist/cypress-svelte.cjs.js +1 -1
- package/svelte/dist/cypress-svelte.esm-bundler.js +1 -1
- package/svelte/svelte/dist/cypress-svelte.cjs.js +1 -1
- package/svelte/svelte/dist/cypress-svelte.esm-bundler.js +1 -1
- package/types/cypress.d.ts +5 -5
- package/types/lodash/common/array.d.ts +41 -30
- package/types/lodash/common/collection.d.ts +10 -2
- package/types/lodash/common/common.d.ts +20 -13
- package/types/lodash/common/function.d.ts +35 -10
- package/types/lodash/common/lang.d.ts +11 -3
- package/types/lodash/common/math.d.ts +3 -1
- package/types/lodash/common/object.d.ts +144 -20
- package/types/lodash/common/seq.d.ts +2 -2
- package/types/lodash/common/string.d.ts +21 -21
- package/types/lodash/common/util.d.ts +4 -3
- package/types/lodash/fp.d.ts +156 -132
- package/types/lodash/index.d.ts +1 -26
- package/types/net-stubbing.d.ts +7 -2
- package/vue/dist/cypress-vue.cjs.js +1 -1
- package/vue/dist/cypress-vue.esm-bundler.js +1 -1
- package/vue/package.json +1 -4
- package/vue/vue/dist/cypress-vue.cjs.js +1 -1
- package/vue/vue/dist/cypress-vue.esm-bundler.js +1 -1
- package/vue/vue/package.json +1 -4
package/types/lodash/index.d.ts
CHANGED
|
@@ -1,16 +1,3 @@
|
|
|
1
|
-
// Type definitions for Lo-Dash 4.14
|
|
2
|
-
// Project: https://lodash.com
|
|
3
|
-
// Definitions by: Brian Zengel <https://github.com/bczengel>,
|
|
4
|
-
// Ilya Mochalov <https://github.com/chrootsu>,
|
|
5
|
-
// Stepan Mikhaylyuk <https://github.com/stepancar>,
|
|
6
|
-
// AJ Richardson <https://github.com/aj-r>,
|
|
7
|
-
// e-cloud <https://github.com/e-cloud>,
|
|
8
|
-
// Georgii Dolzhykov <https://github.com/thorn0>,
|
|
9
|
-
// Jack Moore <https://github.com/jtmthf>,
|
|
10
|
-
// Dominique Rau <https://github.com/DomiR>
|
|
11
|
-
// William Chelman <https://github.com/WilliamChelman>
|
|
12
|
-
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
13
|
-
|
|
14
1
|
/// <reference path="./common/common.d.ts" />
|
|
15
2
|
/// <reference path="./common/array.d.ts" />
|
|
16
3
|
/// <reference path="./common/collection.d.ts" />
|
|
@@ -29,18 +16,6 @@ export as namespace _;
|
|
|
29
16
|
|
|
30
17
|
declare const _: _.LoDashStatic;
|
|
31
18
|
declare namespace _ {
|
|
32
|
-
//
|
|
19
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-interface -- (This will be augmented)
|
|
33
20
|
interface LoDashStatic {}
|
|
34
21
|
}
|
|
35
|
-
|
|
36
|
-
// Backward compatibility with --target es5
|
|
37
|
-
declare global {
|
|
38
|
-
// tslint:disable-next-line:no-empty-interface
|
|
39
|
-
interface Set<T> { }
|
|
40
|
-
// tslint:disable-next-line:no-empty-interface
|
|
41
|
-
interface Map<K, V> { }
|
|
42
|
-
// tslint:disable-next-line:no-empty-interface
|
|
43
|
-
interface WeakSet<T> { }
|
|
44
|
-
// tslint:disable-next-line:no-empty-interface
|
|
45
|
-
interface WeakMap<K extends object, V> { }
|
|
46
|
-
}
|
package/types/net-stubbing.d.ts
CHANGED
|
@@ -207,7 +207,12 @@ export namespace CyHttpMessages {
|
|
|
207
207
|
}
|
|
208
208
|
}
|
|
209
209
|
|
|
210
|
-
|
|
210
|
+
/**
|
|
211
|
+
* A dictionary/object matcher for matching key-value pairs.
|
|
212
|
+
* Used for matching HTTP headers and query string parameters.
|
|
213
|
+
* Keys are strings, values are of type T (typically a StringMatcher).
|
|
214
|
+
*/
|
|
215
|
+
interface DictMatcher<T> {
|
|
211
216
|
[key: string]: T
|
|
212
217
|
}
|
|
213
218
|
|
|
@@ -394,7 +399,7 @@ export interface RouteMatcherOptionsGeneric<S> {
|
|
|
394
399
|
url?: S
|
|
395
400
|
}
|
|
396
401
|
|
|
397
|
-
|
|
402
|
+
type RouteHandlerController<TRequest = any, TResponse = any> = HttpRequestInterceptor<TRequest, TResponse>
|
|
398
403
|
|
|
399
404
|
export type RouteHandler<TRequest = any, TResponse = any> = string | StaticResponseWithOptions | RouteHandlerController<TRequest, TResponse> | object
|
|
400
405
|
|
package/vue/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cypress/vue",
|
|
3
3
|
"version": "0.0.0-development",
|
|
4
|
-
"description": "Browser-based Component Testing for Vue.js with Cypress.io
|
|
4
|
+
"description": "Browser-based Component Testing for Vue.js with Cypress.io",
|
|
5
5
|
"main": "dist/cypress-vue.cjs.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "rimraf dist && rollup -c rollup.config.mjs",
|
|
@@ -21,10 +21,7 @@
|
|
|
21
21
|
"@vue/test-utils": "2.4.6",
|
|
22
22
|
"axios": "0.30.2",
|
|
23
23
|
"cypress": "0.0.0-development",
|
|
24
|
-
"debug": "^4.3.4",
|
|
25
|
-
"globby": "^11.0.1",
|
|
26
24
|
"rollup": "3.29.5",
|
|
27
|
-
"tailwindcss": "1.1.4",
|
|
28
25
|
"typescript": "~5.4.5",
|
|
29
26
|
"vite": "6.3.5",
|
|
30
27
|
"vue": "3.2.47",
|
package/vue/vue/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cypress/vue",
|
|
3
3
|
"version": "0.0.0-development",
|
|
4
|
-
"description": "Browser-based Component Testing for Vue.js with Cypress.io
|
|
4
|
+
"description": "Browser-based Component Testing for Vue.js with Cypress.io",
|
|
5
5
|
"main": "dist/cypress-vue.cjs.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "rimraf dist && rollup -c rollup.config.mjs",
|
|
@@ -21,10 +21,7 @@
|
|
|
21
21
|
"@vue/test-utils": "2.4.6",
|
|
22
22
|
"axios": "0.30.2",
|
|
23
23
|
"cypress": "0.0.0-development",
|
|
24
|
-
"debug": "^4.3.4",
|
|
25
|
-
"globby": "^11.0.1",
|
|
26
24
|
"rollup": "3.29.5",
|
|
27
|
-
"tailwindcss": "1.1.4",
|
|
28
25
|
"typescript": "~5.4.5",
|
|
29
26
|
"vite": "6.3.5",
|
|
30
27
|
"vue": "3.2.47",
|