mocha 9.2.1 → 9.2.2
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/lib/cli/run-helpers.js +10 -10
- package/lib/mocha.js +12 -22
- package/lib/runner.js +1 -1
- package/mocha-es2018.js +23 -28
- package/mocha.js +88 -74
- package/mocha.js.map +1 -1
- package/package.json +9 -8
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mocha",
|
|
3
|
-
"version": "9.2.
|
|
3
|
+
"version": "9.2.2",
|
|
4
|
+
"type": "commonjs",
|
|
4
5
|
"description": "simple, flexible, fun test framework",
|
|
5
6
|
"keywords": [
|
|
6
7
|
"mocha",
|
|
@@ -17,10 +18,6 @@
|
|
|
17
18
|
"jasmine",
|
|
18
19
|
"karma"
|
|
19
20
|
],
|
|
20
|
-
"funding": {
|
|
21
|
-
"type": "opencollective",
|
|
22
|
-
"url": "https://opencollective.com/mochajs"
|
|
23
|
-
},
|
|
24
21
|
"author": "TJ Holowaychuk <tj@vision-media.ca>",
|
|
25
22
|
"license": "MIT",
|
|
26
23
|
"repository": {
|
|
@@ -30,6 +27,11 @@
|
|
|
30
27
|
"bugs": {
|
|
31
28
|
"url": "https://github.com/mochajs/mocha/issues/"
|
|
32
29
|
},
|
|
30
|
+
"funding": {
|
|
31
|
+
"type": "opencollective",
|
|
32
|
+
"url": "https://opencollective.com/mochajs"
|
|
33
|
+
},
|
|
34
|
+
"gitter": "https://gitter.im/mochajs/mocha",
|
|
33
35
|
"homepage": "https://mochajs.org/",
|
|
34
36
|
"logo": "https://cldup.com/S9uQ-cOLYz.svg",
|
|
35
37
|
"notifyLogo": "https://ibin.co/4QuRuGjXvl36.png",
|
|
@@ -65,9 +67,9 @@
|
|
|
65
67
|
"he": "1.2.0",
|
|
66
68
|
"js-yaml": "4.1.0",
|
|
67
69
|
"log-symbols": "4.1.0",
|
|
68
|
-
"minimatch": "
|
|
70
|
+
"minimatch": "4.2.1",
|
|
69
71
|
"ms": "2.1.3",
|
|
70
|
-
"nanoid": "3.
|
|
72
|
+
"nanoid": "3.3.1",
|
|
71
73
|
"serialize-javascript": "6.0.0",
|
|
72
74
|
"strip-json-comments": "3.1.1",
|
|
73
75
|
"supports-color": "8.1.1",
|
|
@@ -191,7 +193,6 @@
|
|
|
191
193
|
"singleQuote": true,
|
|
192
194
|
"trailingComma": "none"
|
|
193
195
|
},
|
|
194
|
-
"gitter": "https://gitter.im/mochajs/mocha",
|
|
195
196
|
"husky": {
|
|
196
197
|
"hooks": {
|
|
197
198
|
"pre-commit": "lint-staged"
|