mocha-compat 3.6.3 → 3.6.5
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/README.md +11 -0
- package/bin/_mocha-compat +1 -1
- package/mocha.js +8236 -3573
- package/package.json +16 -12
- package/bower.json +0 -38
- package/images/error.png +0 -0
- package/images/ok.png +0 -0
- package/lib/browser/.eslintrc.yaml +0 -4
package/README.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
# mocha-compat
|
|
2
|
+
|
|
3
|
+
This is mocha-compat, a fork of mocha maintained at https://github.com/kmalakoff/mocha-compat. This
|
|
4
|
+
is the 3.x line (based on mocha 3.5.3), supporting Node 0.10 through 26. Install it via the alias
|
|
5
|
+
`"mocha-compat-3": "npm:mocha-compat@^3.6.4"`, and use the bins `mocha-compat-3` / `_mocha-compat-3`.
|
|
6
|
+
The unhyphenated `mocha-compat` / `_mocha-compat` bins still work as transitional aliases for
|
|
7
|
+
consumers already on them. A 10.x line also exists, on branch `support/10.x`, published as
|
|
8
|
+
`"mocha-compat-10": "npm:mocha-compat@^10"` for Node 12.17+.
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
1
12
|
|
|
2
13
|
|
|
3
14
|
# Mocha needs YOU!
|
package/bin/_mocha-compat
CHANGED
|
@@ -116,7 +116,7 @@ program
|
|
|
116
116
|
.option('--forbid-only', 'causes test marked with only to fail the suite')
|
|
117
117
|
.option('--forbid-pending', 'causes pending tests and test marked with skip to fail the suite');
|
|
118
118
|
|
|
119
|
-
program._name = 'mocha-compat';
|
|
119
|
+
program._name = 'mocha-compat-3';
|
|
120
120
|
|
|
121
121
|
// init command
|
|
122
122
|
|