mocha 2.2.5 → 2.3.3

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.
Files changed (50) hide show
  1. package/HISTORY.md +1034 -0
  2. package/bin/.eslintrc +3 -0
  3. package/bin/_mocha +12 -15
  4. package/bin/mocha +3 -10
  5. package/bin/options.js +6 -5
  6. package/lib/browser/debug.js +3 -3
  7. package/lib/browser/events.js +42 -26
  8. package/lib/browser/progress.js +37 -45
  9. package/lib/browser/tty.js +4 -5
  10. package/lib/context.js +26 -32
  11. package/lib/hook.js +5 -7
  12. package/lib/interfaces/bdd.js +21 -26
  13. package/lib/interfaces/common.js +33 -15
  14. package/lib/interfaces/exports.js +7 -7
  15. package/lib/interfaces/qunit.js +16 -17
  16. package/lib/interfaces/tdd.js +24 -28
  17. package/lib/mocha.js +140 -99
  18. package/lib/ms.js +43 -24
  19. package/lib/pending.js +2 -3
  20. package/lib/reporters/base.js +159 -138
  21. package/lib/reporters/doc.js +13 -13
  22. package/lib/reporters/dot.js +23 -19
  23. package/lib/reporters/html-cov.js +25 -19
  24. package/lib/reporters/html.js +130 -91
  25. package/lib/reporters/index.js +19 -17
  26. package/lib/reporters/json-cov.js +39 -41
  27. package/lib/reporters/json-stream.js +14 -17
  28. package/lib/reporters/json.js +16 -19
  29. package/lib/reporters/landing.js +20 -24
  30. package/lib/reporters/list.js +14 -16
  31. package/lib/reporters/markdown.js +17 -20
  32. package/lib/reporters/min.js +4 -5
  33. package/lib/reporters/nyan.js +49 -48
  34. package/lib/reporters/progress.js +20 -23
  35. package/lib/reporters/spec.js +23 -22
  36. package/lib/reporters/tap.js +15 -19
  37. package/lib/reporters/xunit.js +83 -63
  38. package/lib/runnable.js +134 -94
  39. package/lib/runner.js +291 -167
  40. package/lib/suite.js +105 -95
  41. package/lib/template.html +1 -1
  42. package/lib/test.js +3 -4
  43. package/lib/utils.js +227 -199
  44. package/mocha.css +35 -0
  45. package/mocha.js +8324 -2471
  46. package/package.json +250 -10
  47. package/lib/browser/escape-string-regexp.js +0 -11
  48. package/lib/browser/fs.js +0 -0
  49. package/lib/browser/glob.js +0 -0
  50. package/lib/browser/path.js +0 -0
package/HISTORY.md ADDED
@@ -0,0 +1,1034 @@
1
+ 2.3.3 / 2015-09-19
2
+ ==================
3
+
4
+ * [#1875] - Fix Markdown reporter exceeds maximum call stack size ([@danielstjules])
5
+ * [#1864] - Fix xunit missing output with --reporter-options output ([@danielstjules])
6
+ * [#1846] - Support all harmony flags ([@danielstjules])
7
+ * Fix fragile xunit reporter spec ([@danielstjules])
8
+ * [#1669] - Fix catch uncaught errors outside test suite execution ([@danielstjules])
9
+ * [#1868] - Revert jade to support npm < v1.3.7 ([@danielstjules])
10
+ * [#1766] - Don't remove modules/components from stack trace in the browser ([@danielstjules])
11
+ * [#1798] - Fix correctly attribute mutiple done err with hooks ([@danielstjules])
12
+ * Fix use utils.reduce for IE8 compatibility ([@wsw0108])
13
+ * Some linting errors fixed by [@danielstjules]
14
+ * Call the inspect() function if message is not set ([@kevinburke])
15
+
16
+ [#1875]: https://github.com/mochajs/mocha/issues/1875
17
+ [#1864]: https://github.com/mochajs/mocha/issues/1864
18
+ [#1846]: https://github.com/mochajs/mocha/issues/1846
19
+ [#1669]: https://github.com/mochajs/mocha/issues/1669
20
+ [#1868]: https://github.com/mochajs/mocha/issues/1868
21
+ [#1766]: https://github.com/mochajs/mocha/issues/1766
22
+ [#1798]: https://github.com/mochajs/mocha/issues/1798
23
+ [@danielstjules]: https://github.com/danielstjules
24
+ [@wsw0108]: https://github.com/wsw0108
25
+ [@kevinburke]: https://github.com/kevinburke
26
+
27
+ 2.3.2 / 2015-09-07
28
+ ==================
29
+ * [#1868] - Fix compatibility with older versions of NPM ([@boneskull])
30
+
31
+ [#1868]: https://github.com/mochajs/mocha/issues/1868
32
+
33
+ 2.3.1 / 2015-09-06
34
+ ==================
35
+
36
+ * [#1812] - Fix: Bail flag causes before() hooks to be run even after a failure ([@aaroncrows])
37
+
38
+ [#1812]: https://github.com/mochajs/mocha/issues/1812
39
+ [aaroncrows]: https://github.com/aaroncrows
40
+
41
+ 2.3.0 / 2015-08-30
42
+ ==================
43
+
44
+ * [#553] - added --allowUncaught option ([@amsul])
45
+ * [#1490] - Allow --async-only to be satisfied by returning a promise ([@jlai])
46
+ * [#1829] - support --max-old-space-size ([@gigadude])
47
+ * [#1811] - upgrade Jade dependency ([@outsideris])
48
+ * [#1769] - Fix async hook error handling ([@ajaykodali])
49
+ * [#1230] - More descriptive beforeEach/afterEach messages ([@duncanbeevers])
50
+ * [#1787] - Scope loading behaviour instead of using early return ([@aryeguy])
51
+ * [#1789] - Fix: html-runner crashing ([@sunesimonsen])
52
+ * [#1749] - Fix maximum call stack error on large amount of tests ([@tinganho])
53
+ * [#1230] - Decorate failed hook titles with test title ([@duncanbeevers])
54
+ * [#1260] - Build using Browserify ([@ndhoule])
55
+ * [#1728] - Don't use `__proto__` ([@ndhoule])
56
+ * [#1781] - Fix hook error tests ([@glenjamin])
57
+ * [#1754] - Allow boolean --reporter-options ([@papandreou])
58
+ * [#1766] - Fix overly aggressive stack suppression ([@moll])
59
+ * [#1752] - Avoid potential infinite loop ([@gsilk])
60
+ * [#1761] - Fix problems running under PhantomJS ([@chromakode])
61
+ * [#1700] - Fix more problems running under PhantomJS ([@jbnicolai])
62
+ * [#1774] - Support escaped spaces in CLI options ([@adamgruber])
63
+ * [#1687] - Fix HTML reporter links with special chars ([@benvinegar])
64
+ * [#1359] - Adopt code style and enforce it using ESLint ([@ndhoule] w/ assist from [@jbnicolai] & [@boneskull])
65
+ * various refactors ([@jbnicolai])
66
+ * [#1758] - Add cross-frame compatible Error checking ([@outdooricon])
67
+ * [#1741] - Remove moot `version` property from bower.json ([@kkirsche])
68
+ * [#1739] - Improve `HISTORY.md` ([@rstacruz])
69
+ * [#1730] - Support more io.js flags ([@ryedog])
70
+ * [#1349] - Allow HTML in HTML reporter errors ([@papandreou] / [@sunesimonsen])
71
+ * [#1572] - Prevent default browser behavior for failure/pass links ([@jschilli])
72
+ * [#1630] - Support underscored harmony flags ([@dominicbarnes])
73
+ * [#1718] - Support more harmony flags ([@slyg])
74
+ * [#1689] - Add stack to JSON-stream reporter ([@jonathandelgado])
75
+ * [#1654] - Fix `ReferenceError` "location is not defined" ([@jakemmarsh])
76
+
77
+ [#553]: https://github.com/mochajs/mocha/issues/553
78
+ [#1490]: https://github.com/mochajs/mocha/issues/1490
79
+ [#1829]: https://github.com/mochajs/mocha/issues/1829
80
+ [#1811]: https://github.com/mochajs/mocha/issues/1811
81
+ [#1769]: https://github.com/mochajs/mocha/issues/1769
82
+ [#1230]: https://github.com/mochajs/mocha/issues/1230
83
+ [#1787]: https://github.com/mochajs/mocha/issues/1787
84
+ [#1789]: https://github.com/mochajs/mocha/issues/1789
85
+ [#1749]: https://github.com/mochajs/mocha/issues/1749
86
+ [#1230]: https://github.com/mochajs/mocha/issues/1230
87
+ [#1260]: https://github.com/mochajs/mocha/issues/1260
88
+ [#1728]: https://github.com/mochajs/mocha/issues/1728
89
+ [#1781]: https://github.com/mochajs/mocha/issues/1781
90
+ [#1754]: https://github.com/mochajs/mocha/issues/1754
91
+ [#1766]: https://github.com/mochajs/mocha/issues/1766
92
+ [#1752]: https://github.com/mochajs/mocha/issues/1752
93
+ [#1761]: https://github.com/mochajs/mocha/issues/1761
94
+ [#1700]: https://github.com/mochajs/mocha/issues/1700
95
+ [#1774]: https://github.com/mochajs/mocha/issues/1774
96
+ [#1687]: https://github.com/mochajs/mocha/issues/1687
97
+ [#1359]: https://github.com/mochajs/mocha/issues/1359
98
+ [#1758]: https://github.com/mochajs/mocha/issues/1758
99
+ [#1741]: https://github.com/mochajs/mocha/issues/1741
100
+ [#1739]: https://github.com/mochajs/mocha/issues/1739
101
+ [#1730]: https://github.com/mochajs/mocha/issues/1730
102
+ [#1349]: https://github.com/mochajs/mocha/issues/1349
103
+ [#1572]: https://github.com/mochajs/mocha/issues/1572
104
+ [#1630]: https://github.com/mochajs/mocha/issues/1630
105
+ [#1718]: https://github.com/mochajs/mocha/issues/1718
106
+ [#1689]: https://github.com/mochajs/mocha/issues/1689
107
+ [#1654]: https://github.com/mochajs/mocha/issues/1654
108
+ [@adamgruber]: https://github.com/adamgruber
109
+ [@ajaykodali]: https://github.com/ajaykodali
110
+ [@amsul]: https://github.com/amsul
111
+ [@aryeguy]: https://github.com/aryeguy
112
+ [@benvinegar]: https://github.com/benvinegar
113
+ [@boneskull]: https://github.com/boneskull
114
+ [@chromakode]: https://github.com/chromakode
115
+ [@dominicbarnes]: https://github.com/dominicbarnes
116
+ [@duncanbeevers]: https://github.com/duncanbeevers
117
+ [@gigadude]: https://github.com/gigadude
118
+ [@glenjamin]: https://github.com/glenjamin
119
+ [@gsilk]: https://github.com/gsilk
120
+ [@jakemmarsh]: https://github.com/jakemmarsh
121
+ [@jbnicolai]: https://github.com/jbnicolai
122
+ [@jlai]: https://github.com/jlai
123
+ [@jonathandelgado]: https://github.com/jonathandelgado
124
+ [@jschilli]: https://github.com/jschilli
125
+ [@kkirsche]: https://github.com/kkirsche
126
+ [@moll]: https://github.com/moll
127
+ [@ndhoule]: https://github.com/ndhoule
128
+ [@outdooricon]: https://github.com/outdooricon
129
+ [@outsideris]: https://github.com/outsideris
130
+ [@papandreou]: https://github.com/papandreou
131
+ [@rstacruz]: https://github.com/rstacruz
132
+ [@ryedog]: https://github.com/ryedog
133
+ [@slyg]: https://github.com/slyg
134
+ [@sunesimonsen]: https://github.com/sunesimonsen
135
+ [@tinganho]: https://github.com/tinganho
136
+
137
+ 2.2.5 / 2015-05-14
138
+ ==================
139
+
140
+ * [#1699] - Upgrade jsdiff to v1.4.0 ([@nylen])
141
+ * [#1648] - fix diff background colors in the console ([@nylen])
142
+ * [#1327] - fix tests running twice, a regression issue. ([#1686], [@danielstjules])
143
+ * [#1675] - add integration tests ([@danielstjules])
144
+ * [#1682] - use a valid SPDX license identifier in package.json ([@kemitchell])
145
+ * [#1660] - fix assertion of invalid dates ([#1661], [@a8m])
146
+ * [#1241] - fix issue with multiline diffs appearing as single line ([#1655], [@a8m])
147
+
148
+ [#1699]: https://github.com/mochajs/mocha/issues/1699
149
+ [#1648]: https://github.com/mochajs/mocha/issues/1648
150
+ [#1327]: https://github.com/mochajs/mocha/issues/1327
151
+ [#1686]: https://github.com/mochajs/mocha/issues/1686
152
+ [#1675]: https://github.com/mochajs/mocha/issues/1675
153
+ [#1682]: https://github.com/mochajs/mocha/issues/1682
154
+ [#1660]: https://github.com/mochajs/mocha/issues/1660
155
+ [#1661]: https://github.com/mochajs/mocha/issues/1661
156
+ [#1241]: https://github.com/mochajs/mocha/issues/1241
157
+ [#1655]: https://github.com/mochajs/mocha/issues/1655
158
+ [@nylen]: https://github.com/nylen
159
+ [@danielstjules]: https://github.com/danielstjules
160
+ [@kemitchell]: https://github.com/kemitchell
161
+ [@a8m]: https://github.com/a8m
162
+
163
+ 2.2.4 / 2015-04-08
164
+ ==================
165
+
166
+ * Load mocha.opts in _mocha for now (close #1645)
167
+
168
+ 2.2.3 / 2015-04-07
169
+ ==================
170
+
171
+ * fix(reporter/base): string diff - issue #1241
172
+ * fix(reporter/base): string diff - issue #1241
173
+ * fix(reporter/base): don't show diffs for errors without expectation
174
+ * fix(reporter/base): don't assume error message is first line of stack
175
+ * improve: dry up reporter/base test
176
+ * fix(reporter/base): explicitly ignore showDiff #1614
177
+ * Add iojs to travis build
178
+ * Pass `--allow-natives-syntax` flag to node.
179
+ * Support --harmony_classes flag for io.js
180
+ * Fix 1556: Update utils.clean to handle newlines in func declarations
181
+ * Fix 1606: fix err handling in IE <= 8 and non-ES5 browsers
182
+ * Fix 1585: make _mocha executable again
183
+ * chore(package.json): add a8m as a contributor
184
+ * Fixed broken link on html-cov reporter
185
+ * support --es_staging flag
186
+ * fix issue where menu overlaps content.
187
+ * update contributors in package.json
188
+ * Remove trailing whitespace from reporter output
189
+ * Remove contributors list from readme
190
+ * log third-party reporter errors
191
+ * [Fix] Exclude not own properties when looping on options
192
+ * fix: support node args in mocha.opts (close #1573)
193
+ * fix(reporter/base): string diff - issue #1241
194
+
195
+ 2.2.1 / 2015-03-09
196
+ ==================
197
+
198
+ * Fix passing of args intended for node/iojs.
199
+
200
+ 2.2.0 / 2015-03-06
201
+ ==================
202
+
203
+ * Update mocha.js
204
+ * Add --fgrep. Use grep for RegExp, fgrep for str
205
+ * Ignore async global errors after spec resolution
206
+ * Fixing errors that prevent mocha.js from loading in the browser - fixes #1558
207
+ * fix(utils): issue #1558 + make
208
+ * add ability to delay root suite; closes #362, closes #1124
209
+ * fix insanity in http tests
210
+ * update travis: add node 0.12, add gitter, remove slack
211
+ * building
212
+ * resolve #1548: ensure the environment's "node" executable is used
213
+ * reporters/base: use supports-color to detect colorable term
214
+ * travis: use docker containers
215
+ * small fix: commander option for --expose-gc
216
+ * Ignore asynchronous errors after global failure
217
+ * Improve error output when a test fails with a non-error
218
+ * updated travis badge, uses svg instead of img
219
+ * Allow skip from test context for #332
220
+ * [JSHINT] Unnecessary semicolon fixed in bin/_mocha
221
+ * Added a reminder about the done() callback to test timeout error messages
222
+ * fixes #1496, in Mocha.run(fn), check if fn exists before executing it, added tests too
223
+ * Add Harmony Proxy flag for iojs
224
+ * test(utils|ms|*): test existing units
225
+ * add support for some iojs flags
226
+ * fix(utils.stringify): issue #1229, diff viewer
227
+ * Remove slack link
228
+ * Prevent multiple 'grep=' querystring params in html reporter
229
+ * Use grep as regexp (close #1381)
230
+ * utils.stringify should handle objects without an Object prototype
231
+ * in runnable test, comparing to undefined error's message rather than a literal
232
+ * Fix test running output truncation on async STDIO
233
+ * ammended for deprecated customFds option in child_process
234
+
235
+ 2.1.0 / 2014-12-23
236
+ ==================
237
+
238
+ * showDiff: don’t stringify strings
239
+ * Clean up unused module dependencies.
240
+ * Filter zero-length strings from mocha.opts
241
+ * only write to stdout in reporters
242
+ * Revert "only write to stdout in reporters"
243
+ * Print colored output only to a tty
244
+ * update summary in README.md
245
+ * rename Readme.md/History.md to README.md/HISTORY.md because neurotic
246
+ * add .mailmap to fix "git shortlog" or "git summary" output
247
+ * fixes #1461: nyan-reporter now respects Base.useColors, fixed bug where Base.color would not return a string when str wasn't a string.
248
+ * Use existing test URL builder in failed replay links
249
+ * modify .travis.yml: use travis_retry; closes #1449
250
+ * fix -t 0 behavior; closes #1446
251
+ * fix tests (whoops)
252
+ * improve diff behavior
253
+ * Preserve pathname when linking to individual tests
254
+ * Fix test
255
+ * Tiny typo in comments fixed
256
+ * after hooks now being called on failed tests when using bail, fixes #1093
257
+ * fix throwing undefined/null now makes tests fail, fixes #1395
258
+ * compiler extensions are added as watched extensions, removed non-standard extensions from watch regex, resolves #1221
259
+ * prefix/namespace for suite titles in markdown reporter, fixes #554
260
+ * fix more bad markdown in CONTRIBUTING.md
261
+ * fix bad markdown in CONTRIBUTING.md
262
+ * add setImmediate/clearImmediate to globals; closes #1435
263
+ * Fix buffer diffs (closes #1132, closes #1433)
264
+ * add a CONTRIBUTING.md. closes #882
265
+ * fix intermittent build failures (maybe). closes #1407
266
+ * add Slack notification to .travis.yml
267
+ * Fix slack link
268
+ * Add slack room to readme
269
+ * Update maintainers
270
+ * update maintainers and contributors
271
+ * resolves #1393: kill children with more effort on SIGINT
272
+ * xunit reporter support for optionally writing to a file
273
+ * if a reporter has a .done method, call it before exiting
274
+ * add support for reporter options
275
+ * only write to stdout in reporters
276
+
277
+ 2.0.0 / 2014-10-21
278
+ ==================
279
+
280
+ * remove: support for node 0.6.x, 0.4.x
281
+ * fix: landing reporter with non ansi characters (#211)
282
+ * fix: html reporter - preserve query params when navigating to suites/tests (#1358)
283
+ * fix: json stream reporter add error message to failed test
284
+ * fix: fixes for visionmedia -> mochajs
285
+ * fix: use stdio, fixes node deprecation warnings (#1391)
286
+
287
+ 1.21.5 / 2014-10-11
288
+ ==================
289
+
290
+ * fix: build for NodeJS v0.6.x
291
+ * fix: do not attempt to highlight syntax when non-HTML reporter is used
292
+ * update: escape-string-regexp to 1.0.2.
293
+ * fix: botched indentation in canonicalize()
294
+ * fix: .gitignore: ignore .patch and .diff files
295
+ * fix: changed 'Catched' to 'Caught' in uncaught exception error handler messages
296
+ * add: `pending` field for json reporter
297
+ * fix: Runner.prototype.uncaught: don't double-end runnables that already have a state.
298
+ * fix: --recursive, broken by f0facd2e
299
+ * update: replaces escapeRegexp with the escape-string-regexp package.
300
+ * update: commander to 2.3.0.
301
+ * update: diff to 1.0.8.
302
+ * fix: ability to disable syntax highlighting (#1329)
303
+ * fix: added empty object to errorJSON() call to catch when no error is present
304
+ * fix: never time out after calling enableTimeouts(false)
305
+ * fix: timeout(0) will work at suite level (#1300)
306
+ * Fix for --watch+only() issue (#888 )
307
+ * fix: respect err.showDiff, add Base reporter test (#810)
308
+
309
+ 1.22.1-3 / 2014-07-27
310
+ ==================
311
+
312
+ * fix: disabling timeouts with this.timeout(0) (#1301)
313
+
314
+ 1.22.1-3 / 2014-07-27
315
+ ==================
316
+
317
+ * fix: local uis and reporters (#1288)
318
+ * fix: building 1.21.0's changes in the browser (#1284)
319
+
320
+ 1.21.0 / 2014-07-23
321
+ ==================
322
+
323
+ * add: --no-timeouts option (#1262, #1268)
324
+ * add: --*- deprecation node flags (#1217)
325
+ * add: --watch-extensions argument (#1247)
326
+ * change: spec reporter is default (#1228)
327
+ * fix: diff output showing incorrect +/- (#1182)
328
+ * fix: diffs of circular structures (#1179)
329
+ * fix: re-render the progress bar when progress has changed only (#1151)
330
+ * fix support for environments with global and window (#1159)
331
+ * fix: reverting to previously defined onerror handler (#1178)
332
+ * fix: stringify non error objects passed to done() (#1270)
333
+ * fix: using local ui, reporters (#1267)
334
+ * fix: cleaning es6 arrows (#1176)
335
+ * fix: don't include attrs in failure tag for xunit (#1244)
336
+ * fix: fail tests that return a promise if promise is rejected w/o a reason (#1224)
337
+ * fix: showing failed tests in doc reporter (#1117)
338
+ * fix: dot reporter dots being off (#1204)
339
+ * fix: catch empty throws (#1219)
340
+ * fix: honoring timeout for sync operations (#1242)
341
+ * update: growl to 1.8.0
342
+
343
+ 1.20.1 / 2014-06-03
344
+ ==================
345
+
346
+ * update: should dev dependency to ~4.0.0 (#1231)
347
+
348
+ 1.20.0 / 2014-05-28
349
+ ==================
350
+
351
+ * add: filenames to suite objects (#1222)
352
+
353
+ 1.19.0 / 2014-05-17
354
+ ==================
355
+
356
+ * add: browser script option to package.json
357
+ * add: export file in Mocha.Test objects (#1174)
358
+ * add: add docs for wrapped node flags
359
+ * fix: mocha.run() to return error status in browser (#1216)
360
+ * fix: clean() to show failure details (#1205)
361
+ * fix: regex that generates html for new keyword (#1201)
362
+ * fix: sibling suites have inherited but separate contexts (#1164)
363
+
364
+
365
+ 1.18.2 / 2014-03-18
366
+ ==================
367
+
368
+ * fix: html runner was prevented from using #mocha as the default root el (#1162)
369
+
370
+ 1.18.1 / 2014-03-18
371
+ ==================
372
+
373
+ * fix: named before/after hooks in bdd, tdd, qunit interfaces (#1161)
374
+
375
+ 1.18.0 / 2014-03-13
376
+ ==================
377
+
378
+ * add: promise support (#329)
379
+ * add: named before/after hooks (#966)
380
+
381
+ 1.17.1 / 2014-01-22
382
+ ==================
383
+
384
+ * fix: expected messages in should.js (should.js#168)
385
+ * fix: expect errno global in node versions < v0.9.11 (#1111)
386
+ * fix: unreliable checkGlobals optimization (#1110)
387
+
388
+ 1.17.0 / 2014-01-09
389
+ ==================
390
+
391
+ * add: able to require globals (describe, it, etc.) through mocha (#1077)
392
+ * fix: abort previous run on --watch change (#1100)
393
+ * fix: reset context for each --watch triggered run (#1099)
394
+ * fix: error when cli can't resolve path or pattern (#799)
395
+ * fix: canonicalize objects before stringifying and diffing them (#1079)
396
+ * fix: make CR call behave like carriage return for non tty (#1087)
397
+
398
+
399
+ 1.16.2 / 2013-12-23
400
+ ==================
401
+
402
+ * fix: couple issues with ie 8 (#1082, #1081)
403
+ * fix: issue running the xunit reporter in browsers (#1068)
404
+ * fix: issue with firefox < 3.5 (#725)
405
+
406
+
407
+ 1.16.1 / 2013-12-19
408
+ ==================
409
+
410
+ * fix: recompiled for missed changes from the last release
411
+
412
+
413
+ 1.16.0 / 2013-12-19
414
+ ==================
415
+
416
+ * add: Runnable.globals(arr) for per test global whitelist (#1046)
417
+ * add: mocha.throwError(err) for assertion libs to call (#985)
418
+ * remove: --watch's spinner (#806)
419
+ * fix: duplicate test output for multi-line specs in spec reporter (#1006)
420
+ * fix: gracefully exit on SIGINT (#1063)
421
+ * fix expose the specified ui only in the browser (#984)
422
+ * fix: ensure process exit code is preserved when using --no-exit (#1059)
423
+ * fix: return true from window.onerror handler (#868)
424
+ * fix: xunit reporter to use process.stdout.write (#1068)
425
+ * fix: utils.clean(str) indentation (#761)
426
+ * fix: xunit reporter returning test duration a NaN (#1039)
427
+
428
+ 1.15.1 / 2013-12-03
429
+ ==================
430
+
431
+ * fix: recompiled for missed changes from the last release
432
+
433
+ 1.15.0 / 2013-12-02
434
+ ==================
435
+
436
+ * add: `--no-exit` to prevent `process.exit()` (#1018)
437
+ * fix: using inline diffs (#1044)
438
+ * fix: show pending test details in xunit reporter (#1051)
439
+ * fix: faster global leak detection (#1024)
440
+ * fix: yui compression (#1035)
441
+ * fix: wrapping long lines in test results (#1030, #1031)
442
+ * fix: handle errors in hooks (#1043)
443
+
444
+ 1.14.0 / 2013-11-02
445
+ ==================
446
+
447
+ * add: unified diff (#862)
448
+ * add: set MOCHA_COLORS env var to use colors (#965)
449
+ * add: able to override tests links in html reporters (#776)
450
+ * remove: teamcity reporter (#954)
451
+ * update: commander dependency to 2.0.0 (#1010)
452
+ * fix: mocha --ui will try to require the ui if not built in, as --reporter does (#1022)
453
+ * fix: send cursor commands only if isatty (#184, #1003)
454
+ * fix: include assertion message in base reporter (#993, #991)
455
+ * fix: consistent return of it, it.only, and describe, describe.only (#840)
456
+
457
+ 1.13.0 / 2013-09-15
458
+ ==================
459
+
460
+ * add: sort test files with --sort (#813)
461
+ * update: diff depedency to 1.0.7
462
+ * update: glob dependency to 3.2.3 (#927)
463
+ * fix: diffs show whitespace differences (#976)
464
+ * fix: improve global leaks (#783)
465
+ * fix: firefox window.getInterface leak
466
+ * fix: accessing iframe via window[iframeIndex] leak
467
+ * fix: faster global leak checking
468
+ * fix: reporter pending css selector (#970)
469
+
470
+ 1.12.1 / 2013-08-29
471
+ ==================
472
+
473
+ * remove test.js from .gitignore
474
+ * update included version of ms.js
475
+
476
+ 1.12.0 / 2013-07-01
477
+ ==================
478
+
479
+ * add: prevent diffs for differing types. Closes #900
480
+ * add `Mocha.process` hack for phantomjs
481
+ * fix: use compilers with requires
482
+ * fix regexps in diffs. Closes #890
483
+ * fix xunit NaN on failure. Closes #894
484
+ * fix: strip tab indentation in `clean` utility method
485
+ * fix: textmate bundle installation
486
+
487
+ 1.11.0 / 2013-06-12
488
+ ==================
489
+
490
+ * add --prof support
491
+ * add --harmony support
492
+ * add --harmony-generators support
493
+ * add "Uncaught " prefix to uncaught exceptions
494
+ * add web workers support
495
+ * add `suite.skip()`
496
+ * change to output # of pending / passing even on failures. Closes #872
497
+ * fix: prevent hooks from being called if we are bailing
498
+ * fix `this.timeout(0)`
499
+
500
+ 1.10.0 / 2013-05-21
501
+ ==================
502
+
503
+ * add add better globbing support for windows via `glob` module
504
+ * add support to pass through flags such as --debug-brk=1234. Closes #852
505
+ * add test.only, test.skip to qunit interface
506
+ * change to always use word-based diffs for now. Closes #733
507
+ * change `mocha init` tests.html to index.html
508
+ * fix `process` global leak in the browser
509
+ * fix: use resolve() instead of join() for --require
510
+ * fix: filterLeaks() condition to not consider indices in global object as leaks
511
+ * fix: restrict mocha.css styling to #mocha id
512
+ * fix: save timer references to avoid Sinon interfering in the browser build.
513
+
514
+ 1.9.0 / 2013-04-03
515
+ ==================
516
+
517
+ * add improved setImmediate implementation
518
+ * replace --ignore-leaks with --check-leaks
519
+ * change default of ignoreLeaks to true. Closes #791
520
+ * remove scrolling for HTML reporter
521
+ * fix retina support
522
+ * fix tmbundle, restrict to js scope
523
+
524
+ 1.8.2 / 2013-03-11
525
+ ==================
526
+
527
+ * add `setImmediate` support for 0.10.x
528
+ * fix mocha -w spinner on windows
529
+
530
+ 1.8.1 / 2013-01-09
531
+ ==================
532
+
533
+ * fix .bail() arity check causing it to default to true
534
+
535
+ 1.8.0 / 2013-01-08
536
+ ==================
537
+
538
+ * add Mocha() options bail support
539
+ * add `Mocha#bail()` method
540
+ * add instanceof check back for inheriting from Error
541
+ * add component.json
542
+ * add diff.js to browser build
543
+ * update growl
544
+ * fix TAP reporter failures comment :D
545
+
546
+ 1.7.4 / 2012-12-06
547
+ ==================
548
+
549
+ * add total number of passes and failures to TAP
550
+ * remove .bind() calls. re #680
551
+ * fix indexOf. Closes #680
552
+
553
+ 1.7.3 / 2012-11-30
554
+ ==================
555
+
556
+ * fix uncaught error support for the browser
557
+ * revert uncaught "fix" which breaks node
558
+
559
+ 1.7.2 / 2012-11-28
560
+ ==================
561
+
562
+ * fix uncaught errors to expose the original error message
563
+
564
+ 1.7.0 / 2012-11-07
565
+ ==================
566
+
567
+ * add `--async-only` support to prevent false positives for missing `done()`
568
+ * add sorting by filename in code coverage
569
+ * add HTML 5 doctype to browser template.
570
+ * add play button to html reporter to rerun a single test
571
+ * add `this.timeout(ms)` as Suite#timeout(ms). Closes #599
572
+ * update growl dependency to 1.6.x
573
+ * fix encoding of test-case ?grep. Closes #637
574
+ * fix unicode chars on windows
575
+ * fix dom globals in Opera/IE. Closes #243
576
+ * fix markdown reporter a tags
577
+ * fix `this.timeout("5s")` support
578
+
579
+ 1.6.0 / 2012-10-02
580
+ ==================
581
+
582
+ * add object diffs when `err.showDiff` is present
583
+ * add hiding of empty suites when pass/failures are toggled
584
+ * add faster `.length` checks to `checkGlobals()` before performing the filter
585
+
586
+ 1.5.0 / 2012-09-21
587
+ ==================
588
+
589
+ * add `ms()` to `.slow()` and `.timeout()`
590
+ * add `Mocha#checkLeaks()` to re-enable global leak checks
591
+ * add `this.slow()` option [aheckmann]
592
+ * add tab, CR, LF to error diffs for now
593
+ * add faster `.checkGlobals()` solution [guille]
594
+ * remove `fn.call()` from reduce util
595
+ * remove `fn.call()` from filter util
596
+ * fix forEach. Closes #582
597
+ * fix relaying of signals [TooTallNate]
598
+ * fix TAP reporter grep number
599
+
600
+ 1.4.2 / 2012-09-01
601
+ ==================
602
+
603
+ * add support to multiple `Mocha#globals()` calls, and strings
604
+ * add `mocha.reporter()` constructor support [jfirebaugh]
605
+ * add `mocha.timeout()`
606
+ * move query-string parser to utils.js
607
+ * move highlight code to utils.js
608
+ * fix third-party reporter support [exogen]
609
+ * fix client-side API to match node-side [jfirebaugh]
610
+ * fix mocha in iframe [joliss]
611
+
612
+ 1.4.1 / 2012-08-28
613
+ ==================
614
+
615
+ * add missing `Markdown` export
616
+ * fix `Mocha#grep()`, escape regexp strings
617
+ * fix reference error when `devicePixelRatio` is not defined. Closes #549
618
+
619
+ 1.4.0 / 2012-08-22
620
+ ==================
621
+
622
+ * add mkdir -p to `mocha init`. Closes #539
623
+ * add `.only()`. Closes #524
624
+ * add `.skip()`. Closes #524
625
+ * change str.trim() to use utils.trim(). Closes #533
626
+ * fix HTML progress indicator retina display
627
+ * fix url-encoding of click-to-grep HTML functionality
628
+
629
+ 1.3.2 / 2012-08-01
630
+ ==================
631
+
632
+ * fix exports double-execution regression. Closes #531
633
+
634
+ 1.3.1 / 2012-08-01
635
+ ==================
636
+
637
+ * add passes/failures toggling to HTML reporter
638
+ * add pending state to `xit()` and `xdescribe()` [Brian Moore]
639
+ * add the @charset "UTF-8"; to fix #522 with FireFox. [Jonathan Creamer]
640
+ * add border-bottom to #stats links
641
+ * add check for runnable in `Runner#uncaught()`. Closes #494
642
+ * add 0.4 and 0.6 back to travis.yml
643
+ * add `-E, --growl-errors` to growl on failures only
644
+ * add prefixes to debug() names. Closes #497
645
+ * add `Mocha#invert()` to js api
646
+ * change dot reporter to use sexy unicode dots
647
+ * fix error when clicking pending test in HTML reporter
648
+ * fix `make tm`
649
+
650
+ 1.3.0 / 2012-07-05
651
+ ==================
652
+
653
+ * add window scrolling to `HTML` reporter
654
+ * add v8 `--trace-*` option support
655
+ * add support for custom reports via `--reporter MODULE`
656
+ * add `--invert` switch to invert `--grep` matches
657
+ * fix export of `Nyan` reporter. Closes #495
658
+ * fix escaping of `HTML` suite titles. Closes #486
659
+ * fix `done()` called multiple times with an error test
660
+ * change `--grep` - regexp escape the input
661
+
662
+ 1.2.2 / 2012-06-28
663
+ ==================
664
+
665
+ * Added 0.8.0 support
666
+
667
+ 1.2.1 / 2012-06-25
668
+ ==================
669
+
670
+ * Added `this.test.error(err)` support to after each hooks. Closes #287
671
+ * Added: export top-level suite on global mocha object (mocha.suite). Closes #448
672
+ * Fixed `js` code block format error in markdown reporter
673
+ * Fixed deprecation warning when using `path.existsSync`
674
+ * Fixed --globals with wildcard
675
+ * Fixed chars in nyan when his head moves back
676
+ * Remove `--growl` from test/mocha.opts. Closes #289
677
+
678
+ 1.2.0 / 2012-06-17
679
+ ==================
680
+
681
+ * Added `nyan` reporter [Atsuya Takagi]
682
+ * Added `mocha init <path>` to copy client files
683
+ * Added "specify" synonym for "it" [domenic]
684
+ * Added global leak wildcard support [nathanbowser]
685
+ * Fixed runner emitter leak. closes #432
686
+ * Fixed omission of .js extension. Closes #454
687
+
688
+ 1.1.0 / 2012-05-30
689
+ ==================
690
+
691
+ * Added: check each `mocha(1)` arg for directories to walk
692
+ * Added `--recursive` [tricknotes]
693
+ * Added `context` for BDD [hokaccha]
694
+ * Added styling for new clickable titles
695
+ * Added clickable suite titles to HTML reporter
696
+ * Added warning when strings are thrown as errors
697
+ * Changed: green arrows again in HTML reporter styling
698
+ * Changed ul/li elements instead of divs for better copy-and-pasting [joliss]
699
+ * Fixed issue #325 - add better grep support to js api
700
+ * Fixed: save timer references to avoid Sinon interfering.
701
+
702
+ 1.0.3 / 2012-04-30
703
+ ==================
704
+
705
+ * Fixed string diff newlines
706
+ * Fixed: removed mocha.css target. Closes #401
707
+
708
+ 1.0.2 / 2012-04-25
709
+ ==================
710
+
711
+ * Added HTML reporter duration. Closes #47
712
+ * Fixed: one postMessage event listener [exogen]
713
+ * Fixed: allow --globals to be used multiple times. Closes #100 [brendannee]
714
+ * Fixed #158: removes jquery include from browser tests
715
+ * Fixed grep. Closes #372 [brendannee]
716
+ * Fixed #166 - When grepping don't display the empty suites
717
+ * Removed test/browser/style.css. Closes #385
718
+
719
+ 1.0.1 / 2012-04-04
720
+ ==================
721
+
722
+ * Fixed `.timeout()` in hooks
723
+ * Fixed: allow callback for `mocha.run()` in client version
724
+ * Fixed browser hook error display. Closes #361
725
+
726
+ 1.0.0 / 2012-03-24
727
+ ==================
728
+
729
+ * Added js API. Closes #265
730
+ * Added: initial run of tests with `--watch`. Closes #345
731
+ * Added: mark `location` as a global on the CS. Closes #311
732
+ * Added `markdown` reporter (github flavour)
733
+ * Added: scrolling menu to coverage.html. Closes #335
734
+ * Added source line to html report for Safari [Tyson Tate]
735
+ * Added "min" reporter, useful for `--watch` [Jakub Nešetřil]
736
+ * Added support for arbitrary compilers via . Closes #338 [Ian Young]
737
+ * Added Teamcity export to lib/reporters/index [Michael Riley]
738
+ * Fixed chopping of first char in error reporting. Closes #334 [reported by topfunky]
739
+ * Fixed terrible FF / Opera stack traces
740
+
741
+ 0.14.1 / 2012-03-06
742
+ ==================
743
+
744
+ * Added lib-cov to _.npmignore_
745
+ * Added reporter to `mocha.run([reporter])` as argument
746
+ * Added some margin-top to the HTML reporter
747
+ * Removed jQuery dependency
748
+ * Fixed `--watch`: purge require cache. Closes #266
749
+
750
+ 0.14.0 / 2012-03-01
751
+ ==================
752
+
753
+ * Added string diff support for terminal reporters
754
+
755
+ 0.13.0 / 2012-02-23
756
+ ==================
757
+
758
+ * Added preliminary test coverage support. Closes #5
759
+ * Added `HTMLCov` reporter
760
+ * Added `JSONCov` reporter [kunklejr]
761
+ * Added `xdescribe()` and `xit()` to the BDD interface. Closes #263 (docs * Changed: make json reporter output pretty json
762
+ * Fixed node-inspector support, swapped `--debug` for `debug` to match node.
763
+ needed)
764
+ Closes #247
765
+
766
+ 0.12.1 / 2012-02-14
767
+ ==================
768
+
769
+ * Added `npm docs mocha` support [TooTallNate]
770
+ * Added a `Context` object used for hook and test-case this. Closes #253
771
+ * Fixed `Suite#clone()` `.ctx` reference. Closes #262
772
+
773
+ 0.12.0 / 2012-02-02
774
+ ==================
775
+
776
+ * Added .coffee `--watch` support. Closes #242
777
+ * Added support to `--require` files relative to the CWD. Closes #241
778
+ * Added quick n dirty syntax highlighting. Closes #248
779
+ * Changed: made HTML progress indicator smaller
780
+ * Fixed xunit errors attribute [dhendo]
781
+
782
+ 0.10.2 / 2012-01-21
783
+ ==================
784
+
785
+ * Fixed suite count in reporter stats. Closes #222
786
+ * Fixed `done()` after timeout error reporting [Phil Sung]
787
+ * Changed the 0-based errors to 1
788
+
789
+ 0.10.1 / 2012-01-17
790
+ ==================
791
+
792
+ * Added support for node 0.7.x
793
+ * Fixed absolute path support. Closes #215 [kompiro]
794
+ * Fixed `--no-colors` option [Jussi Virtanen]
795
+ * Fixed Arial CSS typo in the correct file
796
+
797
+ 0.10.0 / 2012-01-13
798
+ ==================
799
+
800
+ * Added `-b, --bail` to exit on first exception [guillermo]
801
+ * Added support for `-gc` / `--expose-gc` [TooTallNate]
802
+ * Added `qunit`-inspired interface
803
+ * Added MIT LICENSE. Closes #194
804
+ * Added: `--watch` all .js in the CWD. Closes #139
805
+ * Fixed `self.test` reference in runner. Closes #189
806
+ * Fixed double reporting of uncaught exceptions after timeout. Closes #195
807
+
808
+ 0.8.2 / 2012-01-05
809
+ ==================
810
+
811
+ * Added test-case context support. Closes #113
812
+ * Fixed exit status. Closes #187
813
+ * Update commander. Closes #190
814
+
815
+ 0.8.1 / 2011-12-30
816
+ ==================
817
+
818
+ * Fixed reporting of uncaught exceptions. Closes #183
819
+ * Fixed error message defaulting [indutny]
820
+ * Changed mocha(1) from bash to node for windows [Nathan Rajlich]
821
+
822
+ 0.8.0 / 2011-12-28
823
+ ==================
824
+
825
+ * Added `XUnit` reporter [FeeFighters/visionmedia]
826
+ * Added `say(1)` notification support [Maciej Małecki]
827
+ * Changed: fail when done() is invoked with a non-Error. Closes #171
828
+ * Fixed `err.stack`, defaulting to message. Closes #180
829
+ * Fixed: `make tm` mkdir -p the dest. Closes #137
830
+ * Fixed mocha(1) --help bin name
831
+ * Fixed `-d` for `--debug` support
832
+
833
+ 0.7.1 / 2011-12-22
834
+ ==================
835
+
836
+ * Removed `mocha-debug(1)`, use `mocha --debug`
837
+ * Fixed CWD relative requires
838
+ * Fixed growl issue on windows [Raynos]
839
+ * Fixed: platform specific line endings [TooTallNate]
840
+ * Fixed: escape strings in HTML reporter. Closes #164
841
+
842
+ 0.7.0 / 2011-12-18
843
+ ==================
844
+
845
+ * Added support for IE{7,8} [guille]
846
+ * Changed: better browser nextTick implementation [guille]
847
+
848
+ 0.6.0 / 2011-12-18
849
+ ==================
850
+
851
+ * Added setZeroTimeout timeout for browser (nicer stack traces). Closes #153
852
+ * Added "view source" on hover for HTML reporter to make it obvious
853
+ * Changed: replace custom growl with growl lib
854
+ * Fixed duplicate reporting for HTML reporter. Closes #154
855
+ * Fixed silent hook errors in the HTML reporter. Closes #150
856
+
857
+ 0.5.0 / 2011-12-14
858
+ ==================
859
+
860
+ * Added: push node_modules directory onto module.paths for relative require Closes #93
861
+ * Added teamcity reporter [blindsey]
862
+ * Fixed: recover from uncaught exceptions for tests. Closes #94
863
+ * Fixed: only emit "test end" for uncaught within test, not hook
864
+
865
+ 0.4.0 / 2011-12-14
866
+ ==================
867
+
868
+ * Added support for test-specific timeouts via `this.timeout(0)`. Closes #134
869
+ * Added guillermo's client-side EventEmitter. Closes #132
870
+ * Added progress indicator to the HTML reporter
871
+ * Fixed slow browser tests. Closes #135
872
+ * Fixed "suite" color for light terminals
873
+ * Fixed `require()` leak spotted by [guillermo]
874
+
875
+ 0.3.6 / 2011-12-09
876
+ ==================
877
+
878
+ * Removed suite merging (for now)
879
+
880
+ 0.3.5 / 2011-12-08
881
+ ==================
882
+
883
+ * Added support for `window.onerror` [guillermo]
884
+ * Fixed: clear timeout on uncaught exceptions. Closes #131 [guillermo]
885
+ * Added `mocha.css` to PHONY list.
886
+ * Added `mocha.js` to PHONY list.
887
+
888
+ 0.3.4 / 2011-12-08
889
+ ==================
890
+
891
+ * Added: allow `done()` to be called with non-Error
892
+ * Added: return Runner from `mocha.run()`. Closes #126
893
+ * Fixed: run afterEach even on failures. Closes #125
894
+ * Fixed clobbering of current runnable. Closes #121
895
+
896
+ 0.3.3 / 2011-12-08
897
+ ==================
898
+
899
+ * Fixed hook timeouts. Closes #120
900
+ * Fixed uncaught exceptions in hooks
901
+
902
+ 0.3.2 / 2011-12-05
903
+ ==================
904
+
905
+ * Fixed weird reporting when `err.message` is not present
906
+
907
+ 0.3.1 / 2011-12-04
908
+ ==================
909
+
910
+ * Fixed hook event emitter leak. Closes #117
911
+ * Fixed: export `Spec` constructor. Closes #116
912
+
913
+ 0.3.0 / 2011-12-04
914
+ ==================
915
+
916
+ * Added `-w, --watch`. Closes #72
917
+ * Added `--ignore-leaks` to ignore global leak checking
918
+ * Added browser `?grep=pattern` support
919
+ * Added `--globals <names>` to specify accepted globals. Closes #99
920
+ * Fixed `mocha-debug(1)` on some systems. Closes #232
921
+ * Fixed growl total, use `runner.total`
922
+
923
+ 0.2.0 / 2011-11-30
924
+ ==================
925
+
926
+ * Added `--globals <names>` to specify accepted globals. Closes #99
927
+ * Fixed funky highlighting of messages. Closes #97
928
+ * Fixed `mocha-debug(1)`. Closes #232
929
+ * Fixed growl total, use runner.total
930
+
931
+ 0.1.0 / 2011-11-29
932
+ ==================
933
+
934
+ * Added `suiteSetup` and `suiteTeardown` to TDD interface [David Henderson]
935
+ * Added growl icons. Closes #84
936
+ * Fixed coffee-script support
937
+
938
+ 0.0.8 / 2011-11-25
939
+ ==================
940
+
941
+ * Fixed: use `Runner#total` for accurate reporting
942
+
943
+ 0.0.7 / 2011-11-25
944
+ ==================
945
+
946
+ * Added `Hook`
947
+ * Added `Runnable`
948
+ * Changed: `Test` is `Runnable`
949
+ * Fixed global leak reporting in hooks
950
+ * Fixed: > 2 calls to done() only report the error once
951
+ * Fixed: clear timer on failure. Closes #80
952
+
953
+ 0.0.6 / 2011-11-25
954
+ ==================
955
+
956
+ * Fixed return on immediate async error. Closes #80
957
+
958
+ 0.0.5 / 2011-11-24
959
+ ==================
960
+
961
+ * Fixed: make mocha.opts whitespace less picky [kkaefer]
962
+
963
+ 0.0.4 / 2011-11-24
964
+ ==================
965
+
966
+ * Added `--interfaces`
967
+ * Added `--reporters`
968
+ * Added `-c, --colors`. Closes #69
969
+ * Fixed hook timeouts
970
+
971
+ 0.0.3 / 2011-11-23
972
+ ==================
973
+
974
+ * Added `-C, --no-colors` to explicitly disable
975
+ * Added coffee-script support
976
+
977
+ 0.0.2 / 2011-11-22
978
+ ==================
979
+
980
+ * Fixed global leak detection due to Safari bind() change
981
+ * Fixed: escape html entities in Doc reporter
982
+ * Fixed: escape html entities in HTML reporter
983
+ * Fixed pending test support for HTML reporter. Closes #66
984
+
985
+ 0.0.1 / 2011-11-22
986
+ ==================
987
+
988
+ * Added `--timeout` second shorthand support, ex `--timeout 3s`.
989
+ * Fixed "test end" event for uncaughtExceptions. Closes #61
990
+
991
+ 0.0.1-alpha6 / 2011-11-19
992
+ ==================
993
+
994
+ * Added travis CI support (needs enabling when public)
995
+ * Added preliminary browser support
996
+ * Added `make mocha.css` target. Closes #45
997
+ * Added stack trace to TAP errors. Closes #52
998
+ * Renamed tearDown to teardown. Closes #49
999
+ * Fixed: cascading hooksc. Closes #30
1000
+ * Fixed some colors for non-tty
1001
+ * Fixed errors thrown in sync test-cases due to nextTick
1002
+ * Fixed Base.window.width... again give precedence to 0.6.x
1003
+
1004
+ 0.0.1-alpha5 / 2011-11-17
1005
+ ==================
1006
+
1007
+ * Added `doc` reporter. Closes #33
1008
+ * Added suite merging. Closes #28
1009
+ * Added TextMate bundle and `make tm`. Closes #20
1010
+
1011
+ 0.0.1-alpha4 / 2011-11-15
1012
+ ==================
1013
+
1014
+ * Fixed getWindowSize() for 0.4.x
1015
+
1016
+ 0.0.1-alpha3 / 2011-11-15
1017
+ ==================
1018
+
1019
+ * Added `-s, --slow <ms>` to specify "slow" test threshold
1020
+ * Added `mocha-debug(1)`
1021
+ * Added `mocha.opts` support. Closes #31
1022
+ * Added: default [files] to _test/*.js_
1023
+ * Added protection against multiple calls to `done()`. Closes #35
1024
+ * Changed: bright yellow for slow Dot reporter tests
1025
+
1026
+ 0.0.1-alpha1 / 2011-11-08
1027
+ ==================
1028
+
1029
+ * Missed this one :)
1030
+
1031
+ 0.0.1-alpha1 / 2011-11-08
1032
+ ==================
1033
+
1034
+ * Initial release