Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ability to query Mocha version programmatically #3535

Merged
merged 5 commits into from Nov 10, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 14 additions & 0 deletions lib/mocha.js
Expand Up @@ -677,6 +677,20 @@ Mocha.prototype.forbidPending = function() {
return this;
};

/**
* Returns Mocha's version.
*
* @public
* @returns {string} module version as specified by "package.json".
* @example
*
* mocha.version();
* // => '5.3.0'
*/
Mocha.prototype.version = function() {
return require('../package').version;
plroebuck marked this conversation as resolved.
Show resolved Hide resolved
};

/**
* Callback to be invoked when test execution is complete.
*
Expand Down