-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for configuration files with ".jsonc" extension (#3760); c…
…loses #3753
- Loading branch information
Showing
4 changed files
with
32 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// This config file contains Mocha's defaults. | ||
// As you can see, comments are allowed. | ||
// This same configuration could be provided in the `mocha` property of your | ||
// project's `package.json`. | ||
{ | ||
"diff": true, | ||
"extension": ["js"], | ||
"opts": "./test/mocha.opts", | ||
"package": /* 📦 */ "./package.json", | ||
"reporter": /* 📋 */ "spec", | ||
"slow": 75, | ||
"timeout": 2000, | ||
"ui": "bdd" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters