https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 0002d9553bf67fd31710c1f7fe0359a6db4f98b1 authored by Daniel Rosenwasser on 12 May 2017, 08:38:17 UTC
Accepted baselines.
Tip revision: 0002d95
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