123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- 'use strict';
- /**
- * @module List
- */
- /**
- * Module dependencies.
- */
- var Base = require('./base');
- var inherits = require('../utils').inherits;
- var color = Base.color;
- var cursor = Base.cursor;
- /**
- * Expose `List`.
- */
- exports = module.exports = List;
- /**
- * Initialize a new `List` test reporter.
- *
- * @public
- * @class
- * @memberof Mocha.reporters
- * @extends Mocha.reporters.Base
- * @api public
- * @param {Runner} runner
- */
- function List(runner) {
- Base.call(this, runner);
- var self = this;
- var n = 0;
- runner.on('start', function() {
- console.log();
- });
- runner.on('test', function(test) {
- process.stdout.write(color('pass', ' ' + test.fullTitle() + ': '));
- });
- runner.on('pending', function(test) {
- var fmt = color('checkmark', ' -') + color('pending', ' %s');
- console.log(fmt, test.fullTitle());
- });
- runner.on('pass', function(test) {
- var fmt =
- color('checkmark', ' ' + Base.symbols.ok) +
- color('pass', ' %s: ') +
- color(test.speed, '%dms');
- cursor.CR();
- console.log(fmt, test.fullTitle(), test.duration);
- });
- runner.on('fail', function(test) {
- cursor.CR();
- console.log(color('fail', ' %d) %s'), ++n, test.fullTitle());
- });
- runner.once('end', self.epilogue.bind(self));
- }
- /**
- * Inherit from `Base.prototype`.
- */
- inherits(List, Base);
|