cypress 3.4.0 → 3.4.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.
@@ -0,0 +1,55 @@
1
+ {
2
+ "_from": "@types/chai-jquery@1.1.38",
3
+ "_id": "@types/chai-jquery@1.1.38",
4
+ "_inBundle": false,
5
+ "_integrity": "sha512-j/b++tOoQtkqXdkUWnojd+dM+YxkMiWJ193mToN/vv+rkBLv3MSSNwyDxFSXDwdi82Y+J2Js4fvdVkv/JiVeow==",
6
+ "_location": "/@types/chai-jquery",
7
+ "_phantomChildren": {},
8
+ "_requested": {
9
+ "type": "version",
10
+ "registry": true,
11
+ "raw": "@types/chai-jquery@1.1.38",
12
+ "name": "@types/chai-jquery",
13
+ "escapedName": "@types%2fchai-jquery",
14
+ "scope": "@types",
15
+ "rawSpec": "1.1.38",
16
+ "saveSpec": null,
17
+ "fetchSpec": "1.1.38"
18
+ },
19
+ "_requiredBy": [
20
+ "#DEV:/"
21
+ ],
22
+ "_resolved": "https://registry.npmjs.org/@types/chai-jquery/-/chai-jquery-1.1.38.tgz",
23
+ "_shasum": "bbab052200871e1b26b9a239caa63b2a2eaa00bc",
24
+ "_spec": "@types/chai-jquery@1.1.38",
25
+ "_where": "/root/cypress/cli",
26
+ "bugs": {
27
+ "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues"
28
+ },
29
+ "bundleDependencies": false,
30
+ "contributors": [
31
+ {
32
+ "name": "Kazi Manzur Rashid",
33
+ "url": "https://github.com/kazimanzurrashid"
34
+ }
35
+ ],
36
+ "dependencies": {
37
+ "@types/chai": "*",
38
+ "@types/jquery": "*"
39
+ },
40
+ "deprecated": false,
41
+ "description": "TypeScript definitions for chai-jquery",
42
+ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme",
43
+ "license": "MIT",
44
+ "main": "",
45
+ "name": "@types/chai-jquery",
46
+ "repository": {
47
+ "type": "git",
48
+ "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git"
49
+ },
50
+ "scripts": {},
51
+ "typeScriptVersion": "2.3",
52
+ "types": "index",
53
+ "typesPublisherContentHash": "e12e44b47bd00c6f4a82ba74968fe19edad29fdcd0ffc07a23da854653181f17",
54
+ "version": "1.1.38"
55
+ }
@@ -1,12 +1,10 @@
1
1
  // Shim definition to export a namespace. Cypress is actually a global module
2
2
  // so import/export isn't allowed there. We import here and define a global module
3
3
  /// <reference path="./chai/index.d.ts" />
4
-
5
- export = Chai
6
- export as namespace Chai
7
-
8
4
  declare namespace Chai {
9
- type ChaiStatic = typeof chai
10
- type ExpectStatic = typeof chai.expect
11
- type AssertStatic = typeof chai.assert
5
+ interface Include {
6
+ html(html: string): Assertion
7
+ text(text: string): Assertion
8
+ value(text: string): Assertion
9
+ }
12
10
  }
package/types/index.d.ts CHANGED
@@ -327,6 +327,12 @@ declare namespace Cypress {
327
327
  */
328
328
  on: Actions
329
329
 
330
+ /**
331
+ * These events come from Cypress as it issues commands and reacts to their state. These are all useful to listen to for debugging purposes.
332
+ * @see https://on.cypress.io/catalog-of-events#App-Events
333
+ */
334
+ once: Actions
335
+
330
336
  /**
331
337
  * These events come from Cypress as it issues commands and reacts to their state. These are all useful to listen to for debugging purposes.
332
338
  * @see https://on.cypress.io/catalog-of-events#App-Events
@@ -573,8 +579,10 @@ declare namespace Cypress {
573
579
  * cy.contains(/^b\w+/)
574
580
  * // yields <ul>...</ul>
575
581
  * cy.contains('ul', 'apples')
582
+ * // tries to find the given text for up to 1 second
583
+ * cy.contains('my text to find', {timeout: 1000})
576
584
  */
577
- contains(content: string | number | RegExp): Chainable<Subject>
585
+ contains(content: string | number | RegExp, options?: Partial<Loggable & Timeoutable>): Chainable<Subject>
578
586
  /**
579
587
  * Get the child DOM element that contains given text.
580
588
  *
@@ -846,6 +854,8 @@ declare namespace Cypress {
846
854
  * @example
847
855
  * cy.location('host') // Get the host of the location object
848
856
  * cy.location('port') // Get the port of the location object
857
+ * // Assert on the href of the location
858
+ * cy.location('href').should('contain', '/tag/tutorials')
849
859
  */
850
860
  location(key: string, options?: Partial<Loggable & Timeoutable>): Chainable<Location>
851
861
 
@@ -930,6 +940,12 @@ declare namespace Cypress {
930
940
  */
931
941
  on: Actions
932
942
 
943
+ /**
944
+ * These events come from Cypress as it issues commands and reacts to their state. These are all useful to listen to for debugging purposes.
945
+ * @see https://on.cypress.io/catalog-of-events#App-Events
946
+ */
947
+ once: Actions
948
+
933
949
  /**
934
950
  * These events come from Cypress as it issues commands and reacts to their state. These are all useful to listen to for debugging purposes.
935
951
  * @see https://on.cypress.io/catalog-of-events#App-Events
@@ -1276,6 +1292,9 @@ declare namespace Cypress {
1276
1292
  * Create an assertion. Assertions are automatically retried until they pass or time out.
1277
1293
  *
1278
1294
  * @see https://on.cypress.io/should
1295
+ * @example
1296
+ * // Assert on the href of the location
1297
+ * cy.location('href').should('contain', '/tag/tutorials/')
1279
1298
  */
1280
1299
  should: Chainer<Subject>
1281
1300
 
@@ -2235,6 +2254,13 @@ declare namespace Cypress {
2235
2254
  * @default 10
2236
2255
  */
2237
2256
  delay: number
2257
+ /**
2258
+ * Parse special characters for strings surrounded by `{}`,
2259
+ * such as `{esc}`. Set to `false` to type the literal characters instead
2260
+ *
2261
+ * @default true
2262
+ */
2263
+ parseSpecialCharSequences: boolean
2238
2264
  /**
2239
2265
  * Forces the action, disables waiting for actionability
2240
2266
  *
@@ -3716,6 +3742,14 @@ declare namespace Cypress {
3716
3742
  * @see https://on.cypress.io/assertions
3717
3743
  */
3718
3744
  (chainer: 'contain.html', value: string): Chainable<Subject>
3745
+ /**
3746
+ * Assert that the html of the first element of the selection partially contains the given html, using `.html()`.
3747
+ * @example
3748
+ * cy.get('#result').should('include.html', '<em>John Doe</em>')
3749
+ * @see http://chaijs.com/plugins/chai-jquery/#htmlhtml
3750
+ * @see https://on.cypress.io/assertions
3751
+ */
3752
+ (chainer: 'include.html', value: string): Chainable<Subject>
3719
3753
  /**
3720
3754
  * Assert that the first element of the selection has the given id, using `.attr('id')`.
3721
3755
  * @example
@@ -3749,6 +3783,14 @@ declare namespace Cypress {
3749
3783
  * @see https://on.cypress.io/assertions
3750
3784
  */
3751
3785
  (chainer: 'contain.text', value: string): Chainable<Subject>
3786
+ /**
3787
+ * Assert that the text of the first element of the selection partially contains the given text, using `.text()`.
3788
+ * @example
3789
+ * cy.get('#result').should('include.text', 'John Doe')
3790
+ * @see http://chaijs.com/plugins/chai-jquery/#texttext
3791
+ * @see https://on.cypress.io/assertions
3792
+ */
3793
+ (chainer: 'include.text', value: string): Chainable<Subject>
3752
3794
  /**
3753
3795
  * Assert that the first element of the selection has the given value, using `.val()`.
3754
3796
  * @example
@@ -3765,6 +3807,14 @@ declare namespace Cypress {
3765
3807
  * @see https://on.cypress.io/assertions
3766
3808
  */
3767
3809
  (chainer: 'contain.value', value: string): Chainable<Subject>
3810
+ /**
3811
+ * Assert that the first element of the selection partially contains the given value, using `.val()`.
3812
+ * @example
3813
+ * cy.get('textarea').should('include.value', 'foo bar baz')
3814
+ * @see http://chaijs.com/plugins/chai-jquery/#valuevalue
3815
+ * @see https://on.cypress.io/assertions
3816
+ */
3817
+ (chainer: 'include.value', value: string): Chainable<Subject>
3768
3818
  /**
3769
3819
  * Assert that the selection matches a given selector, using `.is()`. Note that this overrides the built-in chai assertion. If the object asserted against is not a jQuery object, the original implementation will be called.
3770
3820
  * @example
@@ -3920,6 +3970,14 @@ declare namespace Cypress {
3920
3970
  * @see https://on.cypress.io/assertions
3921
3971
  */
3922
3972
  (chainer: 'not.contain.html', value: string): Chainable<Subject>
3973
+ /**
3974
+ * Assert that the html of the first element of the selection does not contain the given html, using `.html()`.
3975
+ * @example
3976
+ * cy.get('#result').should('not.include.html', '<em>John Doe</em>')
3977
+ * @see http://chaijs.com/plugins/chai-jquery/#htmlhtml
3978
+ * @see https://on.cypress.io/assertions
3979
+ */
3980
+ (chainer: 'not.include.html', value: string): Chainable<Subject>
3923
3981
  /**
3924
3982
  * Assert that the first element of the selection does not have the given id, using `.attr('id')`.
3925
3983
  * @example
@@ -3953,6 +4011,14 @@ declare namespace Cypress {
3953
4011
  * @see https://on.cypress.io/assertions
3954
4012
  */
3955
4013
  (chainer: 'not.contain.text', value: string): Chainable<Subject>
4014
+ /**
4015
+ * Assert that the text of the first element of the selection does not contain the given text, using `.text()`.
4016
+ * @example
4017
+ * cy.get('#result').should('not.include.text', 'John Doe')
4018
+ * @see http://chaijs.com/plugins/chai-jquery/#texttext
4019
+ * @see https://on.cypress.io/assertions
4020
+ */
4021
+ (chainer: 'not.include.text', value: string): Chainable<Subject>
3956
4022
  /**
3957
4023
  * Assert that the first element of the selection does not have the given value, using `.val()`.
3958
4024
  * @example
@@ -3969,6 +4035,14 @@ declare namespace Cypress {
3969
4035
  * @see https://on.cypress.io/assertions
3970
4036
  */
3971
4037
  (chainer: 'not.contain.value', value: string): Chainable<Subject>
4038
+ /**
4039
+ * Assert that the first element of the selection does not contain the given value, using `.val()`.
4040
+ * @example
4041
+ * cy.get('textarea').should('not.include.value', 'foo bar baz')
4042
+ * @see http://chaijs.com/plugins/chai-jquery/#valuevalue
4043
+ * @see https://on.cypress.io/assertions
4044
+ */
4045
+ (chainer: 'not.include.value', value: string): Chainable<Subject>
3972
4046
  /**
3973
4047
  * Assert that the selection does not match a given selector, using `.is()`. Note that this overrides the built-in chai assertion. If the object asserted against is not a jQuery object, the original implementation will be called.
3974
4048
  * @example
@@ -4299,22 +4373,44 @@ declare namespace Cypress {
4299
4373
  // Diff taken from https://github.com/Microsoft/TypeScript/issues/12215#issuecomment-311923766
4300
4374
  type Diff<T extends string, U extends string> = ({ [P in T]: P } & { [P in U]: never } & { [x: string]: never })[T]
4301
4375
  type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>
4376
+
4377
+ /**
4378
+ * Public interface for the global "cy" object. If you want to add
4379
+ * a custom property to this object, you should extend this interface.
4380
+ * @see https://on.cypress.io/typescript#Types-for-custom-commands
4381
+ *
4382
+ ```
4383
+ // in your TS file
4384
+ declare namespace Cypress {
4385
+ interface cy {
4386
+ // declare additional properties on "cy" object, like
4387
+ // label: string
4388
+ }
4389
+ interface Chainable {
4390
+ // declare additional custom commands as methods, like
4391
+ // login(username: string, password: string)
4392
+ }
4393
+ }
4394
+ ```
4395
+ */
4396
+ interface cy extends Chainable<undefined> {}
4302
4397
  }
4303
4398
 
4304
4399
  /**
4305
4400
  * Global variables `cy` added by Cypress with all API commands.
4306
4401
  * @see https://on.cypress.io/api
4307
- * @example
4402
+ *
4308
4403
  ```
4309
4404
  cy.get('button').click()
4310
4405
  cy.get('.result').contains('Expected text')
4311
4406
  ```
4312
4407
  */
4313
- declare const cy: Cypress.Chainable<undefined>
4408
+ declare const cy: Cypress.cy
4409
+
4314
4410
  /**
4315
4411
  * Global variable `Cypress` holds common utilities and constants.
4316
4412
  * @see https://on.cypress.io/api
4317
- * @example
4413
+ *
4318
4414
  ```
4319
4415
  Cypress.config("pageLoadTimeout") // => 60000
4320
4416
  Cypress.version // => "1.4.0"
@@ -0,0 +1,132 @@
1
+ {
2
+ "_from": "@types/jquery@3.3.6",
3
+ "_id": "@types/jquery@3.3.6",
4
+ "_inBundle": false,
5
+ "_integrity": "sha512-403D4wN95Mtzt2EoQHARf5oe/jEPhzBOBNrunk+ydQGW8WmkQ/E8rViRAEB1qEt/vssfGfNVD6ujP4FVeegrLg==",
6
+ "_location": "/@types/jquery",
7
+ "_phantomChildren": {},
8
+ "_requested": {
9
+ "type": "version",
10
+ "registry": true,
11
+ "raw": "@types/jquery@3.3.6",
12
+ "name": "@types/jquery",
13
+ "escapedName": "@types%2fjquery",
14
+ "scope": "@types",
15
+ "rawSpec": "3.3.6",
16
+ "saveSpec": null,
17
+ "fetchSpec": "3.3.6"
18
+ },
19
+ "_requiredBy": [
20
+ "#DEV:/",
21
+ "/@types/chai-jquery"
22
+ ],
23
+ "_resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-3.3.6.tgz",
24
+ "_shasum": "5932ead926307ca21e5b36808257f7c926b06565",
25
+ "_spec": "@types/jquery@3.3.6",
26
+ "_where": "/root/cypress/cli",
27
+ "bugs": {
28
+ "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues"
29
+ },
30
+ "bundleDependencies": false,
31
+ "contributors": [
32
+ {
33
+ "name": "Leonard Thieu",
34
+ "url": "https://github.com/leonard-thieu"
35
+ },
36
+ {
37
+ "name": "Boris Yankov",
38
+ "url": "https://github.com/borisyankov"
39
+ },
40
+ {
41
+ "name": "Christian Hoffmeister",
42
+ "url": "https://github.com/choffmeister"
43
+ },
44
+ {
45
+ "name": "Steve Fenton",
46
+ "url": "https://github.com/Steve-Fenton"
47
+ },
48
+ {
49
+ "name": "Diullei Gomes",
50
+ "url": "https://github.com/Diullei"
51
+ },
52
+ {
53
+ "name": "Tass Iliopoulos",
54
+ "url": "https://github.com/tasoili"
55
+ },
56
+ {
57
+ "name": "Jason Swearingen",
58
+ "url": "https://github.com/jasons-novaleaf"
59
+ },
60
+ {
61
+ "name": "Sean Hill",
62
+ "url": "https://github.com/seanski"
63
+ },
64
+ {
65
+ "name": "Guus Goossens",
66
+ "url": "https://github.com/Guuz"
67
+ },
68
+ {
69
+ "name": "Kelly Summerlin",
70
+ "url": "https://github.com/ksummerlin"
71
+ },
72
+ {
73
+ "name": "Basarat Ali Syed",
74
+ "url": "https://github.com/basarat"
75
+ },
76
+ {
77
+ "name": "Nicholas Wolverson",
78
+ "url": "https://github.com/nwolverson"
79
+ },
80
+ {
81
+ "name": "Derek Cicerone",
82
+ "url": "https://github.com/derekcicerone"
83
+ },
84
+ {
85
+ "name": "Andrew Gaspar",
86
+ "url": "https://github.com/AndrewGaspar"
87
+ },
88
+ {
89
+ "name": "Seikichi Kondo",
90
+ "url": "https://github.com/seikichi"
91
+ },
92
+ {
93
+ "name": "Benjamin Jackman",
94
+ "url": "https://github.com/benjaminjackman"
95
+ },
96
+ {
97
+ "name": "Poul Sorensen",
98
+ "url": "https://github.com/s093294"
99
+ },
100
+ {
101
+ "name": "Josh Strobl",
102
+ "url": "https://github.com/JoshStrobl"
103
+ },
104
+ {
105
+ "name": "John Reilly",
106
+ "url": "https://github.com/johnnyreilly"
107
+ },
108
+ {
109
+ "name": "Dick van den Brink",
110
+ "url": "https://github.com/DickvdBrink"
111
+ },
112
+ {
113
+ "name": "Thomas Schulz",
114
+ "url": "https://github.com/King2500"
115
+ }
116
+ ],
117
+ "dependencies": {},
118
+ "deprecated": false,
119
+ "description": "TypeScript definitions for jquery",
120
+ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme",
121
+ "license": "MIT",
122
+ "main": "",
123
+ "name": "@types/jquery",
124
+ "repository": {
125
+ "type": "git",
126
+ "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git"
127
+ },
128
+ "scripts": {},
129
+ "typeScriptVersion": "2.3",
130
+ "typesPublisherContentHash": "fa29764f6d6313daa1dc8e6af76539a12100e3d6e08c92956259f69d2792bb69",
131
+ "version": "3.3.6"
132
+ }
@@ -0,0 +1,85 @@
1
+ {
2
+ "_from": "@types/lodash@4.14.122",
3
+ "_id": "@types/lodash@4.14.122",
4
+ "_inBundle": false,
5
+ "_integrity": "sha512-9IdED8wU93ty8gP06ninox+42SBSJHp2IAamsSYMUY76mshRTeUsid/gtbl8ovnOwy8im41ib4cxTiIYMXGKew==",
6
+ "_location": "/@types/lodash",
7
+ "_phantomChildren": {},
8
+ "_requested": {
9
+ "type": "version",
10
+ "registry": true,
11
+ "raw": "@types/lodash@4.14.122",
12
+ "name": "@types/lodash",
13
+ "escapedName": "@types%2flodash",
14
+ "scope": "@types",
15
+ "rawSpec": "4.14.122",
16
+ "saveSpec": null,
17
+ "fetchSpec": "4.14.122"
18
+ },
19
+ "_requiredBy": [
20
+ "#DEV:/"
21
+ ],
22
+ "_resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.122.tgz",
23
+ "_shasum": "3e31394c38cf1e5949fb54c1192cbc406f152c6c",
24
+ "_spec": "@types/lodash@4.14.122",
25
+ "_where": "/root/cypress/cli",
26
+ "bugs": {
27
+ "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues"
28
+ },
29
+ "bundleDependencies": false,
30
+ "contributors": [
31
+ {
32
+ "name": "Brian Zengel",
33
+ "url": "https://github.com/bczengel"
34
+ },
35
+ {
36
+ "name": "Ilya Mochalov",
37
+ "url": "https://github.com/chrootsu"
38
+ },
39
+ {
40
+ "name": "Stepan Mikhaylyuk",
41
+ "url": "https://github.com/stepancar"
42
+ },
43
+ {
44
+ "name": "AJ Richardson",
45
+ "url": "https://github.com/aj-r"
46
+ },
47
+ {
48
+ "name": "Junyoung Clare Jang",
49
+ "url": "https://github.com/ailrun"
50
+ },
51
+ {
52
+ "name": "e-cloud",
53
+ "url": "https://github.com/e-cloud"
54
+ },
55
+ {
56
+ "name": "Georgii Dolzhykov",
57
+ "url": "https://github.com/thorn0"
58
+ },
59
+ {
60
+ "name": "Jack Moore",
61
+ "url": "https://github.com/jtmthf"
62
+ },
63
+ {
64
+ "name": "Dominique Rau",
65
+ "url": "https://github.com/DomiR"
66
+ }
67
+ ],
68
+ "dependencies": {},
69
+ "deprecated": false,
70
+ "description": "TypeScript definitions for Lo-Dash",
71
+ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme",
72
+ "license": "MIT",
73
+ "main": "",
74
+ "name": "@types/lodash",
75
+ "repository": {
76
+ "type": "git",
77
+ "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git",
78
+ "directory": "types/lodash"
79
+ },
80
+ "scripts": {},
81
+ "typeScriptVersion": "2.8",
82
+ "types": "index",
83
+ "typesPublisherContentHash": "f9ef5d346ee8015426be9faf8cae74064821c2dd5f3b1feca7597aa0026191d4",
84
+ "version": "4.14.122"
85
+ }
@@ -0,0 +1,56 @@
1
+ {
2
+ "_from": "@types/minimatch@3.0.3",
3
+ "_id": "@types/minimatch@3.0.3",
4
+ "_inBundle": false,
5
+ "_integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==",
6
+ "_location": "/@types/minimatch",
7
+ "_phantomChildren": {},
8
+ "_requested": {
9
+ "type": "version",
10
+ "registry": true,
11
+ "raw": "@types/minimatch@3.0.3",
12
+ "name": "@types/minimatch",
13
+ "escapedName": "@types%2fminimatch",
14
+ "scope": "@types",
15
+ "rawSpec": "3.0.3",
16
+ "saveSpec": null,
17
+ "fetchSpec": "3.0.3"
18
+ },
19
+ "_requiredBy": [
20
+ "#DEV:/",
21
+ "/@types/glob"
22
+ ],
23
+ "_resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz",
24
+ "_shasum": "3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d",
25
+ "_spec": "@types/minimatch@3.0.3",
26
+ "_where": "/root/cypress/cli",
27
+ "bugs": {
28
+ "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues"
29
+ },
30
+ "bundleDependencies": false,
31
+ "contributors": [
32
+ {
33
+ "name": "vvakame",
34
+ "url": "https://github.com/vvakame"
35
+ },
36
+ {
37
+ "name": "Shant Marouti",
38
+ "url": "https://github.com/shantmarouti"
39
+ }
40
+ ],
41
+ "dependencies": {},
42
+ "deprecated": false,
43
+ "description": "TypeScript definitions for Minimatch",
44
+ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme",
45
+ "license": "MIT",
46
+ "main": "",
47
+ "name": "@types/minimatch",
48
+ "repository": {
49
+ "type": "git",
50
+ "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git"
51
+ },
52
+ "scripts": {},
53
+ "typeScriptVersion": "2.0",
54
+ "typesPublisherContentHash": "e768e36348874adcc93ac67e9c3c7b5fcbd39079c0610ec16e410b8f851308d1",
55
+ "version": "3.0.3"
56
+ }
@@ -2,15 +2,15 @@
2
2
  > `npm install --save @types/mocha`
3
3
 
4
4
  # Summary
5
- This package contains type definitions for mocha (http://mochajs.org/).
5
+ This package contains type definitions for mocha ( https://mochajs.org ).
6
6
 
7
7
  # Details
8
- Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mocha
8
+ Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mocha
9
9
 
10
10
  Additional Details
11
- * Last updated: Thu, 26 Oct 2017 18:02:22 GMT
11
+ * Last updated: Thu, 30 May 2019 18:05:34 GMT
12
12
  * Dependencies: none
13
- * Global values: Mocha, after, afterEach, before, beforeEach, context, describe, it, mocha, run, setup, specify, suite, suiteSetup, suiteTeardown, teardown, test, xdescribe, xit
13
+ * Global values: Mocha, after, afterEach, before, beforeEach, context, describe, it, mocha, run, setup, specify, suite, suiteSetup, suiteTeardown, teardown, test, xcontext, xdescribe, xit, xspecify
14
14
 
15
15
  # Credits
16
- These definitions were written by Kazi Manzur Rashid <https://github.com/kazimanzurrashid>, otiai10 <https://github.com/otiai10>, jt000 <https://github.com/jt000>, Vadim Macagon <https://github.com/enlight>.
16
+ These definitions were written by Kazi Manzur Rashid <https://github.com/kazimanzurrashid>, otiai10 <https://github.com/otiai10>, jt000 <https://github.com/jt000>, Vadim Macagon <https://github.com/enlight>, Andrew Bradley <https://github.com/cspotcode>, Dmitrii Sorin <https://github.com/1999>.