cypress 9.2.0 → 9.4.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +25 -25
- package/bin/cypress +3 -3
- package/lib/cli.js +14 -14
- package/lib/cypress.js +27 -27
- package/lib/errors.js +25 -25
- package/lib/exec/run.js +13 -13
- package/lib/exec/shared.js +8 -8
- package/lib/tasks/cache.js +3 -3
- package/lib/tasks/download.js +77 -49
- package/lib/tasks/get-folder-size.js +8 -8
- package/lib/tasks/state.js +17 -17
- package/lib/tasks/verify.js +12 -12
- package/lib/util.js +69 -53
- package/package.json +6 -5
- package/types/chai/index.d.ts +5 -5
- package/types/cy-blob-util.d.ts +13 -13
- package/types/cy-bluebird.d.ts +12 -12
- package/types/cy-chai.d.ts +10 -10
- package/types/cy-http.d.ts +13 -13
- package/types/cy-minimatch.d.ts +96 -96
- package/types/cypress-eventemitter.d.ts +33 -29
- package/types/cypress-expect.d.ts +3 -3
- package/types/cypress-global-vars.d.ts +22 -22
- package/types/cypress-npm-api.d.ts +404 -404
- package/types/cypress-type-helpers.d.ts +2 -2
- package/types/cypress.d.ts +5861 -5815
- package/types/index.d.ts +33 -33
- package/types/jquery/JQuery.d.ts +12939 -12939
- package/types/jquery/legacy.d.ts +200 -200
- package/types/jquery/misc.d.ts +6661 -6661
- package/types/minimatch/index.d.ts +0 -0
- package/types/mocha/index.d.ts +2801 -2801
- package/types/net-stubbing.ts +553 -553
- package/types/sinon/index.d.ts +227 -217
- package/types/sinon/ts3.1/index.d.ts +0 -1789
@@ -1,22 +1,22 @@
|
|
1
|
-
/**
|
2
|
-
* Global variables `cy` added by Cypress with all API commands.
|
3
|
-
* @see https://on.cypress.io/api
|
4
|
-
*
|
5
|
-
```
|
6
|
-
cy.get('button').click()
|
7
|
-
cy.get('.result').contains('Expected text')
|
8
|
-
```
|
9
|
-
*/
|
10
|
-
declare const cy: Cypress.cy & EventEmitter
|
11
|
-
|
12
|
-
/**
|
13
|
-
* Global variable `Cypress` holds common utilities and constants.
|
14
|
-
* @see https://on.cypress.io/api
|
15
|
-
*
|
16
|
-
```
|
17
|
-
Cypress.config("pageLoadTimeout") // => 60000
|
18
|
-
Cypress.version // => "1.4.0"
|
19
|
-
Cypress._ // => Lodash _
|
20
|
-
```
|
21
|
-
*/
|
22
|
-
declare const Cypress: Cypress.Cypress & EventEmitter
|
1
|
+
/**
|
2
|
+
* Global variables `cy` added by Cypress with all API commands.
|
3
|
+
* @see https://on.cypress.io/api
|
4
|
+
*
|
5
|
+
```
|
6
|
+
cy.get('button').click()
|
7
|
+
cy.get('.result').contains('Expected text')
|
8
|
+
```
|
9
|
+
*/
|
10
|
+
declare const cy: Cypress.cy & EventEmitter
|
11
|
+
|
12
|
+
/**
|
13
|
+
* Global variable `Cypress` holds common utilities and constants.
|
14
|
+
* @see https://on.cypress.io/api
|
15
|
+
*
|
16
|
+
```
|
17
|
+
Cypress.config("pageLoadTimeout") // => 60000
|
18
|
+
Cypress.version // => "1.4.0"
|
19
|
+
Cypress._ // => Lodash _
|
20
|
+
```
|
21
|
+
*/
|
22
|
+
declare const Cypress: Cypress.Cypress & EventEmitter
|