diff --git a/lib/runnable.js b/lib/runnable.js index 023481dd69..f93f59cc23 100644 --- a/lib/runnable.js +++ b/lib/runnable.js @@ -165,7 +165,9 @@ Runnable.prototype.isPassed = function() { /** * Set or get number of retries. * - * @private + * @memberof Mocha.Runnable + * @public + * @returns {number|void} */ Runnable.prototype.retries = function(n) { if (!arguments.length) { @@ -177,7 +179,9 @@ Runnable.prototype.retries = function(n) { /** * Set or get current retry * - * @private + * @memberof Mocha.Runnable + * @public + * @returns {number|void} */ Runnable.prototype.currentRetry = function(n) { if (!arguments.length) {