cypress 14.1.0 → 14.2.1
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/package.json +6 -6
- package/react/package.json +1 -1
- package/react/react/package.json +1 -1
- package/types/cypress.d.ts +14 -2
package/package.json
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
{
|
2
2
|
"name": "cypress",
|
3
|
-
"version": "14.1
|
3
|
+
"version": "14.2.1",
|
4
4
|
"main": "index.js",
|
5
5
|
"scripts": {
|
6
6
|
"postinstall": "node index.js --exec install",
|
7
7
|
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";"
|
8
8
|
},
|
9
9
|
"dependencies": {
|
10
|
-
"@cypress/request": "^3.0.
|
10
|
+
"@cypress/request": "^3.0.8",
|
11
11
|
"@cypress/xvfb": "^1.2.4",
|
12
12
|
"@types/sinonjs__fake-timers": "8.1.1",
|
13
13
|
"@types/sizzle": "^2.3.2",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
"check-more-types": "^2.24.0",
|
21
21
|
"ci-info": "^4.1.0",
|
22
22
|
"cli-cursor": "^3.1.0",
|
23
|
-
"cli-table3": "~0.6.
|
23
|
+
"cli-table3": "~0.6.5",
|
24
24
|
"commander": "^6.2.1",
|
25
25
|
"common-tags": "^1.8.0",
|
26
26
|
"dayjs": "^1.10.4",
|
@@ -44,7 +44,7 @@
|
|
44
44
|
"process": "^0.11.10",
|
45
45
|
"proxy-from-env": "1.0.0",
|
46
46
|
"request-progress": "^3.0.0",
|
47
|
-
"semver": "^7.
|
47
|
+
"semver": "^7.7.1",
|
48
48
|
"supports-color": "^8.1.1",
|
49
49
|
"tmp": "~0.2.3",
|
50
50
|
"tree-kill": "1.2.2",
|
@@ -123,8 +123,8 @@
|
|
123
123
|
},
|
124
124
|
"buildInfo": {
|
125
125
|
"commitBranch": "develop",
|
126
|
-
"commitSha": "
|
127
|
-
"commitDate": "2025-
|
126
|
+
"commitSha": "a9ad8b136ff5f566cfaacec149ffab41eeb26b69",
|
127
|
+
"commitDate": "2025-03-26T00:33:33.000Z",
|
128
128
|
"stable": true
|
129
129
|
},
|
130
130
|
"description": "Cypress is a next generation front end testing tool built for the modern web",
|
package/react/package.json
CHANGED
package/react/react/package.json
CHANGED
package/types/cypress.d.ts
CHANGED
@@ -570,6 +570,14 @@ declare namespace Cypress {
|
|
570
570
|
*/
|
571
571
|
log(options: Partial<LogConfig>): Log
|
572
572
|
|
573
|
+
/**
|
574
|
+
* Stop the Cypress App on the current machine while tests are running
|
575
|
+
* @see https://on.cypress.io/cypress-stop
|
576
|
+
* @example
|
577
|
+
* Cypress.stop()
|
578
|
+
*/
|
579
|
+
stop(): void
|
580
|
+
|
573
581
|
Commands: {
|
574
582
|
/**
|
575
583
|
* Add a custom command
|
@@ -2571,7 +2579,9 @@ declare namespace Cypress {
|
|
2571
2579
|
*/
|
2572
2580
|
withArgs(...args: any[]): Omit<A, 'withArgs'> & Agent<A>
|
2573
2581
|
|
2574
|
-
callsFake(func: (...args: any[]) => any):
|
2582
|
+
callsFake(func: (...args: any[]) => any): Agent<A>
|
2583
|
+
|
2584
|
+
callThroughWithNew(): Agent<A>
|
2575
2585
|
}
|
2576
2586
|
|
2577
2587
|
type Agent<T extends sinon.SinonSpy> = SinonSpyAgent<T> & T
|
@@ -3304,7 +3314,8 @@ declare namespace Cypress {
|
|
3304
3314
|
socketIoRoute: string
|
3305
3315
|
spec: Cypress['spec'] | null
|
3306
3316
|
specs: Array<Cypress['spec']>
|
3307
|
-
|
3317
|
+
isDefaultProtocolEnabled: boolean
|
3318
|
+
isStudioProtocolEnabled: boolean
|
3308
3319
|
hideCommandLog: boolean
|
3309
3320
|
hideRunnerUi: boolean
|
3310
3321
|
}
|
@@ -6446,6 +6457,7 @@ declare namespace Cypress {
|
|
6446
6457
|
}
|
6447
6458
|
|
6448
6459
|
interface Log {
|
6460
|
+
id: string
|
6449
6461
|
end(): Log
|
6450
6462
|
error(error: Error): Log
|
6451
6463
|
finish(): void
|