mocha 11.1.0 → 11.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/bin/mocha.js +2 -2
- package/lib/cli/cli.js +7 -9
- package/lib/cli/collect-files.js +5 -5
- package/lib/cli/config.js +2 -2
- package/lib/cli/init.js +2 -2
- package/lib/cli/lookup-files.js +2 -2
- package/lib/cli/options.js +3 -3
- package/lib/cli/run-helpers.js +5 -5
- package/lib/cli/run.js +2 -2
- package/lib/cli/watch-run.js +1 -1
- package/lib/errors.js +1 -1
- package/lib/mocha.js +1 -1
- package/lib/nodejs/esm-utils.js +2 -2
- package/lib/reporters/json.js +2 -2
- package/lib/reporters/tap.js +1 -1
- package/lib/reporters/xunit.js +13 -5
- package/lib/runnable.js +3 -1
- package/lib/runner.js +41 -3
- package/lib/suite.js +1 -1
- package/lib/utils.js +2 -2
- package/mocha.js +55 -7
- package/mocha.js.map +1 -1
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mocha",
|
|
3
|
-
"version": "11.1
|
|
3
|
+
"version": "11.2.1",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "simple, flexible, fun test framework",
|
|
6
6
|
"keywords": [
|
|
@@ -94,7 +94,6 @@
|
|
|
94
94
|
"version": "run-p version:* && git add -A ./AUTHORS ./CHANGELOG.md"
|
|
95
95
|
},
|
|
96
96
|
"dependencies": {
|
|
97
|
-
"ansi-colors": "^4.1.3",
|
|
98
97
|
"browser-stdout": "^1.3.1",
|
|
99
98
|
"chokidar": "^3.5.3",
|
|
100
99
|
"debug": "^4.3.5",
|
|
@@ -107,6 +106,7 @@
|
|
|
107
106
|
"log-symbols": "^4.1.0",
|
|
108
107
|
"minimatch": "^5.1.6",
|
|
109
108
|
"ms": "^2.1.3",
|
|
109
|
+
"picocolors": "^1.1.1",
|
|
110
110
|
"serialize-javascript": "^6.0.2",
|
|
111
111
|
"strip-json-comments": "^3.1.1",
|
|
112
112
|
"supports-color": "^8.1.1",
|
|
@@ -120,6 +120,7 @@
|
|
|
120
120
|
"@11ty/eleventy-plugin-inclusive-language": "^1.0.3",
|
|
121
121
|
"@eslint/js": "^8.56.0",
|
|
122
122
|
"@mocha/docdash": "^4.0.1",
|
|
123
|
+
"@rollup/plugin-alias": "^5.1.1",
|
|
123
124
|
"@rollup/plugin-commonjs": "^21.0.2",
|
|
124
125
|
"@rollup/plugin-json": "^4.1.0",
|
|
125
126
|
"@rollup/plugin-multi-entry": "^4.0.1",
|
|
@@ -128,8 +129,8 @@
|
|
|
128
129
|
"coffeescript": "^2.6.1",
|
|
129
130
|
"cross-env": "^7.0.2",
|
|
130
131
|
"eslint": "^8.56.0",
|
|
132
|
+
"eslint-plugin-n": "^17.15.1",
|
|
131
133
|
"fail-on-errors-webpack-plugin": "^3.0.0",
|
|
132
|
-
"fs-extra": "^10.0.0",
|
|
133
134
|
"globals": "^13.24.0",
|
|
134
135
|
"installed-check": "^9.3.0",
|
|
135
136
|
"jsdoc": "^3.6.7",
|