cypress 13.6.2 → 13.6.3
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/package.json +3 -4
- package/react/dist/cypress-react.cjs.js +1 -1
- package/react/dist/cypress-react.esm-bundler.js +1 -1
- package/react/react/dist/cypress-react.cjs.js +1 -1
- package/react/react/dist/cypress-react.esm-bundler.js +1 -1
- package/react18/dist/cypress-react.cjs.js +1 -1
- package/react18/dist/cypress-react.esm-bundler.js +1 -1
- package/react18/react18/dist/cypress-react.cjs.js +1 -1
- package/react18/react18/dist/cypress-react.esm-bundler.js +1 -1
- 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 +7 -7
- package/types/sinon/index.d.ts +1 -1
- package/vue/dist/cypress-vue.cjs.js +1 -1
- package/vue/dist/cypress-vue.esm-bundler.js +1 -1
- package/vue/vue/dist/cypress-vue.cjs.js +1 -1
- package/vue/vue/dist/cypress-vue.esm-bundler.js +1 -1
- package/vue2/dist/cypress-vue2.cjs.js +1 -1
- package/vue2/dist/cypress-vue2.esm-bundler.js +1 -1
- package/vue2/vue2/dist/cypress-vue2.cjs.js +1 -1
- package/vue2/vue2/dist/cypress-vue2.esm-bundler.js +1 -1
- package/types/cy-http.d.ts +0 -13
package/angular/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cypress",
|
|
3
|
-
"version": "13.6.
|
|
3
|
+
"version": "13.6.3",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"postinstall": "node index.js --exec install",
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@cypress/request": "^3.0.0",
|
|
11
11
|
"@cypress/xvfb": "^1.2.4",
|
|
12
|
-
"@types/node": "^18.17.5",
|
|
13
12
|
"@types/sinonjs__fake-timers": "8.1.1",
|
|
14
13
|
"@types/sizzle": "^2.3.2",
|
|
15
14
|
"arch": "^2.2.0",
|
|
@@ -135,8 +134,8 @@
|
|
|
135
134
|
},
|
|
136
135
|
"buildInfo": {
|
|
137
136
|
"commitBranch": "develop",
|
|
138
|
-
"commitSha": "
|
|
139
|
-
"commitDate": "
|
|
137
|
+
"commitSha": "92e922e0ed0edd4e100ac035f30cc298b5578f30",
|
|
138
|
+
"commitDate": "2024-01-16T18:36:41.000Z",
|
|
140
139
|
"stable": true
|
|
141
140
|
},
|
|
142
141
|
"description": "Cypress is a next generation front end testing tool built for the modern web",
|
package/types/cypress.d.ts
CHANGED
|
@@ -2637,7 +2637,7 @@ declare namespace Cypress {
|
|
|
2637
2637
|
* Time to wait (ms)
|
|
2638
2638
|
*
|
|
2639
2639
|
* @default defaultCommandTimeout
|
|
2640
|
-
* @see https://
|
|
2640
|
+
* @see https://on.cypress.io/configuration#Timeouts
|
|
2641
2641
|
*/
|
|
2642
2642
|
timeout: number
|
|
2643
2643
|
}
|
|
@@ -2662,21 +2662,21 @@ declare namespace Cypress {
|
|
|
2662
2662
|
* Time to wait for the request (ms)
|
|
2663
2663
|
*
|
|
2664
2664
|
* @default {@link Timeoutable#timeout}
|
|
2665
|
-
* @see https://
|
|
2665
|
+
* @see https://on.cypress.io/configuration#Timeouts
|
|
2666
2666
|
*/
|
|
2667
2667
|
requestTimeout: number
|
|
2668
2668
|
/**
|
|
2669
2669
|
* Time to wait for the response (ms)
|
|
2670
2670
|
*
|
|
2671
2671
|
* @default {@link Timeoutable#timeout}
|
|
2672
|
-
* @see https://
|
|
2672
|
+
* @see https://on.cypress.io/configuration#Timeouts
|
|
2673
2673
|
*/
|
|
2674
2674
|
responseTimeout: number
|
|
2675
2675
|
}
|
|
2676
2676
|
|
|
2677
2677
|
/**
|
|
2678
2678
|
* Options to force an event, skipping Actionability check
|
|
2679
|
-
* @see https://
|
|
2679
|
+
* @see https://on.cypress.io/interacting-with-elements#Actionability
|
|
2680
2680
|
*/
|
|
2681
2681
|
interface Forceable {
|
|
2682
2682
|
/**
|
|
@@ -2693,7 +2693,7 @@ declare namespace Cypress {
|
|
|
2693
2693
|
|
|
2694
2694
|
/**
|
|
2695
2695
|
* Options to affect Actionability checks
|
|
2696
|
-
* @see https://
|
|
2696
|
+
* @see https://on.cypress.io/interacting-with-elements#Actionability
|
|
2697
2697
|
*/
|
|
2698
2698
|
interface ActionableOptions extends Forceable {
|
|
2699
2699
|
/**
|
|
@@ -2882,7 +2882,7 @@ declare namespace Cypress {
|
|
|
2882
2882
|
*/
|
|
2883
2883
|
baseUrl: string | null
|
|
2884
2884
|
/**
|
|
2885
|
-
* Any values to be set as [environment variables](https://
|
|
2885
|
+
* Any values to be set as [environment variables](https://on.cypress.io/environment-variables)
|
|
2886
2886
|
* @default {}
|
|
2887
2887
|
*/
|
|
2888
2888
|
env: { [key: string]: any }
|
|
@@ -2902,7 +2902,7 @@ declare namespace Cypress {
|
|
|
2902
2902
|
*/
|
|
2903
2903
|
port: number | null
|
|
2904
2904
|
/**
|
|
2905
|
-
* The [reporter](https://
|
|
2905
|
+
* The [reporter](https://on.cypress.io/reporters) used when running headlessly or in CI
|
|
2906
2906
|
* @default "spec"
|
|
2907
2907
|
*/
|
|
2908
2908
|
reporter: string
|
package/types/sinon/index.d.ts
CHANGED
|
@@ -45,7 +45,7 @@ declare namespace Sinon {
|
|
|
45
45
|
* so a call that received the provided arguments (in the same spots) and possibly others as well will return true.
|
|
46
46
|
* @param args
|
|
47
47
|
*/
|
|
48
|
-
calledWith(...args: Partial<MatchArguments<TArgs>>): boolean;
|
|
48
|
+
calledWith(...args: Partial<MatchArguments<TArgs>>[]): boolean;
|
|
49
49
|
/**
|
|
50
50
|
* Returns true if spy was called at least once with the provided arguments and no others.
|
|
51
51
|
*/
|
package/types/cy-http.d.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file should be deleted as soon as the serever
|
|
3
|
-
* TODO: delete this file when ResolvedDevServerConfig.server is converted to closeServer
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
/// <reference types="node" />
|
|
7
|
-
import * as cyUtilsHttp from 'http'
|
|
8
|
-
export = cyUtilsHttp
|
|
9
|
-
/**
|
|
10
|
-
* namespace created to bridge nodeJs.http typings so that
|
|
11
|
-
* we can type http Server in CT
|
|
12
|
-
*/
|
|
13
|
-
export as namespace cyUtilsHttp
|