cypress 6.5.0 → 6.8.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/package.json +2 -2
- package/types/cypress.d.ts +1 -10
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "cypress",
|
3
|
-
"version": "6.
|
3
|
+
"version": "6.8.0",
|
4
4
|
"main": "index.js",
|
5
5
|
"scripts": {
|
6
6
|
"postinstall": "node index.js --exec install",
|
@@ -40,7 +40,7 @@
|
|
40
40
|
"moment": "^2.29.1",
|
41
41
|
"ospath": "^1.2.2",
|
42
42
|
"pretty-bytes": "^5.4.1",
|
43
|
-
"ramda": "~0.
|
43
|
+
"ramda": "~0.27.1",
|
44
44
|
"request-progress": "^3.0.0",
|
45
45
|
"supports-color": "^7.2.0",
|
46
46
|
"tmp": "~0.2.1",
|
package/types/cypress.d.ts
CHANGED
@@ -2582,11 +2582,6 @@ declare namespace Cypress {
|
|
2582
2582
|
* @default { runMode: 1, openMode: null }
|
2583
2583
|
*/
|
2584
2584
|
firefoxGcInterval: Nullable<number | { runMode: Nullable<number>, openMode: Nullable<number> }>
|
2585
|
-
/**
|
2586
|
-
* Allows listening to the `before:run`, `after:run`, `before:spec`, and `after:spec` events in the plugins file.
|
2587
|
-
* @default false
|
2588
|
-
*/
|
2589
|
-
experimentalRunEvents: boolean
|
2590
2585
|
/**
|
2591
2586
|
* Enables AST-based JS/HTML rewriting. This may fix issues caused by the existing regex-based JS/HTML replacement
|
2592
2587
|
* algorithm.
|
@@ -5134,11 +5129,7 @@ declare namespace Cypress {
|
|
5134
5129
|
|
5135
5130
|
interface DevServerOptions {
|
5136
5131
|
specs: Spec[]
|
5137
|
-
config:
|
5138
|
-
supportFile?: string
|
5139
|
-
projectRoot: string
|
5140
|
-
webpackDevServerPublicPathRoute: string
|
5141
|
-
},
|
5132
|
+
config: ResolvedConfigOptions & RuntimeConfigOptions,
|
5142
5133
|
devServerEvents: NodeJS.EventEmitter,
|
5143
5134
|
}
|
5144
5135
|
|