mocha 3.4.2 → 3.5.0
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/CHANGELOG.md +34 -2
- package/README.md +4 -3
- package/bin/_mocha +12 -1
- package/bin/mocha +1 -0
- package/lib/mocha.js +20 -0
- package/lib/runner.js +6 -0
- package/mocha.js +838 -795
- package/package.json +9 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mocha",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.0",
|
|
4
4
|
"description": "simple, flexible, fun test framework",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mocha",
|
|
@@ -309,7 +309,7 @@
|
|
|
309
309
|
"dependencies": {
|
|
310
310
|
"browser-stdout": "1.3.0",
|
|
311
311
|
"commander": "2.9.0",
|
|
312
|
-
"debug": "2.6.
|
|
312
|
+
"debug": "2.6.8",
|
|
313
313
|
"diff": "3.2.0",
|
|
314
314
|
"escape-string-regexp": "1.0.5",
|
|
315
315
|
"glob": "7.1.1",
|
|
@@ -320,10 +320,12 @@
|
|
|
320
320
|
"supports-color": "3.1.2"
|
|
321
321
|
},
|
|
322
322
|
"devDependencies": {
|
|
323
|
+
"@coderbyheart/karma-sauce-launcher": "git://github.com/coderbyheart/karma-sauce-launcher#5259942cd6d40090eaa13ceeef5b0b8738c7710f",
|
|
323
324
|
"assert": "^1.4.1",
|
|
324
325
|
"browserify": "^13.0.0",
|
|
325
326
|
"coffee-script": "^1.10.0",
|
|
326
327
|
"coveralls": "^2.11.15",
|
|
328
|
+
"cross-spawn": "^5.1.0",
|
|
327
329
|
"eslint": "^3.11.1",
|
|
328
330
|
"eslint-config-semistandard": "^7.0.0",
|
|
329
331
|
"eslint-config-standard": "^6.2.1",
|
|
@@ -336,13 +338,14 @@
|
|
|
336
338
|
"karma-chrome-launcher": "^2.0.0",
|
|
337
339
|
"karma-expect": "^1.1.2",
|
|
338
340
|
"karma-mocha": "^1.3.0",
|
|
339
|
-
"karma-phantomjs-launcher": "
|
|
340
|
-
"karma-sauce-launcher": "coderbyheart/karma-sauce-launcher",
|
|
341
|
+
"karma-phantomjs-launcher": "0.2.3",
|
|
341
342
|
"karma-spec-reporter": "0.0.26",
|
|
342
343
|
"nyc": "^10.0.0",
|
|
344
|
+
"os-name": "^2.0.1",
|
|
343
345
|
"phantomjs": "1.9.8",
|
|
346
|
+
"readable-stream": "2.2.11",
|
|
344
347
|
"rimraf": "^2.5.2",
|
|
345
|
-
"should": "^
|
|
348
|
+
"should": "^9.0.2",
|
|
346
349
|
"through2": "^2.0.1",
|
|
347
350
|
"watchify": "^3.7.0"
|
|
348
351
|
},
|
|
@@ -368,11 +371,5 @@
|
|
|
368
371
|
"supports-color": false
|
|
369
372
|
},
|
|
370
373
|
"homepage": "https://mochajs.org",
|
|
371
|
-
"logo": "https://cldup.com/S9uQ-cOLYz.svg"
|
|
372
|
-
"greenkeeper": {
|
|
373
|
-
"ignore": [
|
|
374
|
-
"phantomjs",
|
|
375
|
-
"lodash.create"
|
|
376
|
-
]
|
|
377
|
-
}
|
|
374
|
+
"logo": "https://cldup.com/S9uQ-cOLYz.svg"
|
|
378
375
|
}
|