-
-
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.
Browse files
Browse the repository at this point in the history
* implementation of global setup/teardown; closes #4308 * move deprecate() and warn() from utils into errors module This avoids a circular dependency which arises when Mocha is bundled. These are private APIs.
- Loading branch information
Showing
54 changed files
with
4,590 additions
and
3,130 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ coverage/ | |
mocha.js | ||
*.fixture.js | ||
docs/_site | ||
docs/api | ||
docs/_dist | ||
docs/example | ||
out/ | ||
|
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 |
---|---|---|
|
@@ -48,6 +48,7 @@ module.exports = () => { | |
); | ||
require('./test/setup'); | ||
}, | ||
debug: true | ||
debug: true, | ||
runMode: 'onsave' | ||
}; | ||
}; |
Oops, something went wrong.