123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- 'use strict';
- /**
- * @module Min
- */
- /**
- * Module dependencies.
- */
- var Base = require('./base');
- var inherits = require('../utils').inherits;
- var constants = require('../runner').constants;
- var EVENT_RUN_END = constants.EVENT_RUN_END;
- var EVENT_RUN_BEGIN = constants.EVENT_RUN_BEGIN;
- /**
- * Expose `Min`.
- */
- exports = module.exports = Min;
- /**
- * Initialize a new `Min` minimal test reporter (best used with --watch).
- *
- * @public
- * @class
- * @memberof Mocha.reporters
- * @extends Mocha.reporters.Base
- * @param {Runner} runner
- */
- function Min(runner) {
- Base.call(this, runner);
- runner.on(EVENT_RUN_BEGIN, function() {
- // clear screen
- process.stdout.write('\u001b[2J');
- // set cursor position
- process.stdout.write('\u001b[1;3H');
- });
- runner.once(EVENT_RUN_END, this.epilogue.bind(this));
- }
- /**
- * Inherit from `Base.prototype`.
- */
- inherits(Min, Base);
- Min.description = 'essentially just a summary';
|