https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 171c664fefd945301ab0aaf287b3d1f288c67900 authored by Mohamed Hegazy on 30 August 2017, 00:26:58 UTC
Update LKG
Tip revision: 171c664
mocha-none-reporter.js
/**
 * Module dependencies.
 */

var Base = require('mocha').reporters.Base;

/**
 * Expose `None`.
 */

exports = module.exports = None;

/**
 * Initialize a new `None` test reporter.
 *
 * @api public
 * @param {Runner} runner
 */
function None(runner) {
  Base.call(this);
}

/**
 * Inherit from `Base.prototype`.
 */
None.prototype.__proto__ = Base.prototype;
back to top