You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: changelogs/CHANGELOG_V3_older.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -204,7 +204,7 @@ Thanks to all our contributors, sponsors and backers! Keep on the lookout for a
204
204
-[#2315](https://github.com/mochajs/mocha/issues/2315): Fix uncaught TypeError thrown from callback stack ([@1999](https://github.com/1999))
205
205
- Fix broken `only()`/`skip()` in IE7/IE8 ([@boneskull](https://github.com/boneskull))
206
206
-[#2502](https://github.com/mochajs/mocha/issues/2502): Fix broken stack trace filter on Node.js under Windows ([@boneskull](https://github.com/boneskull))
207
-
-[#2496](https://github.com/mochajs/mocha/issues/2496): Fix diff output for objects instantiated with `String` constructor ([more](https://youtrack.jetbrains.com/issue/WEB-23383)) ([@boneskull](https://github.com/boneskull))
207
+
-[#2496](https://github.com/mochajs/mocha/issues/2496): Fix diff output for objects instantiated with `String` constructor ([YouTrack issue tracker](https://youtrack.jetbrains.com/issue/WEB-23383)) ([@boneskull](https://github.com/boneskull))
208
208
209
209
# 3.0.2 / 2016-08-08
210
210
@@ -625,6 +625,7 @@ Thanks to everyone who contributed, and our fabulous [sponsors and backers](http
625
625
626
626
- fix: disabling timeouts with this.timeout(0) ([#1301](https://github.com/mochajs/mocha/issues/1301))
627
627
628
+
<!-- markdownlint-disable-next-line MD024 -->
628
629
# 1.22.1-3 / 2014-07-27
629
630
630
631
- fix: local uis and reporters ([#1288](https://github.com/mochajs/mocha/issues/1288))
Copy file name to clipboardExpand all lines: index.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,9 @@ title: "Mocha - the fun, simple, flexible JavaScript test framework"
4
4
description: "Mocha is a feature-rich JavaScript test framework running on Node.js and in the browser, making asynchronous testing simple and fun."
5
5
---
6
6
7
+
<!-- Disable MD051 due to the rule not aware of this file is specifically converted to HTML -->
8
+
<!--markdownlint-disable-file MD051 -->
9
+
7
10
<divclass="admonition">This site has a new look, try it out at <ahref="next">mochajs.org/next</a>!</div>
8
11
9
12
Mocha is a feature-rich JavaScript test framework running on [Node.js][] and in the browser, making asynchronous testing _simple_ and _fun_. Mocha tests run serially, allowing for flexible and accurate reporting, while mapping uncaught exceptions to the correct test cases. Hosted on [GitHub][github-mocha].
@@ -2233,7 +2236,7 @@ To use a [cli option](#command-line-usage) that contains a "-", please convert t
2233
2236
#### Options that differ slightly from [cli options](#command-line-usage):
2234
2237
2235
2238
`reporter`_{string|constructor}_
2236
-
You can pass a reporter's name or a custom reporter's constructor. You can find **recommended** reporters for the browser [here](#reporting). It is possible to use [built-in reporters](#reporters) as well. Their employment in browsers is neither recommended nor supported, open the console to see the test results.
2239
+
You can pass a reporter's name or a custom reporter's constructor. You can find **recommended** reporters for the browser in [Reporting section](#reporting). It is possible to use [built-in reporters](#reporters) as well. Their employment in browsers is neither recommended nor supported, open the console to see the test results.
2237
2240
2238
2241
#### Options that _only_ function in browser context:
2239
2242
@@ -2305,7 +2308,7 @@ This also includes `spec`. For example, a `.mocharc.json` containing `"spec": ["
2305
2308
2306
2309
### Extending Configuration
2307
2310
2308
-
Configurations can inherit from other modules using the `extends` keyword. See [here][yargs-configobject-extends] for more information.
2311
+
Configurations can inherit from other modules using the `extends` keyword. For more information, please refer to [this section in yargs.js.org][yargs-configobject-extends]
2309
2312
2310
2313
### Configuration Format
2311
2314
@@ -2434,8 +2437,6 @@ or the [source](https://github.com/mochajs/mocha/blob/main/lib/mocha.js).
0 commit comments