Sha256: 74a59a94409ca601601a7bf66dfa9909740888d113ce3f8701e96604bd5679b0

Contents?: true

Size: 1.71 KB

Versions: 15

Compression:

Stored size: 1.71 KB

Contents

/**
 * Module dependencies.
 */

var Base = require('./base')
  , cursor = Base.cursor
  , color = Base.color;

/**
 * Expose `Spec`.
 */

exports = module.exports = Spec;

/**
 * Initialize a new `Spec` test reporter.
 *
 * @param {Runner} runner
 * @api public
 */

function Spec(runner) {
  Base.call(this, runner);

  var self = this
    , stats = this.stats
    , indents = 0
    , n = 0;

  function indent() {
    return Array(indents).join('  ')
  }

  runner.on('start', function(){
    console.log();
  });

  runner.on('suite', function(suite){
    ++indents;
    console.log(color('suite', '%s%s'), indent(), suite.title);
  });

  runner.on('suite end', function(suite){
    --indents;
    if (1 == indents) console.log();
  });

  runner.on('test', function(test){
    process.stdout.write(indent() + color('pass', '  ◦ ' + test.title + ': '));
  });

  runner.on('pending', function(test){
    var fmt = indent() + color('pending', '  - %s');
    console.log(fmt, test.title);
  });

  runner.on('pass', function(test){
    if ('fast' == test.speed) {
      var fmt = indent()
        + color('checkmark', '  ' + Base.symbols.ok)
        + color('pass', ' %s ');
      cursor.CR();
      console.log(fmt, test.title);
    } else {
      var fmt = indent()
        + color('checkmark', '  ' + Base.symbols.ok)
        + color('pass', ' %s ')
        + color(test.speed, '(%dms)');
      cursor.CR();
      console.log(fmt, test.title, test.duration);
    }
  });

  runner.on('fail', function(test, err){
    cursor.CR();
    console.log(indent() + color('fail', '  %d) %s'), ++n, test.title);
  });

  runner.on('end', self.epilogue.bind(self));
}

/**
 * Inherit from `Base.prototype`.
 */

Spec.prototype.__proto__ = Base.prototype;

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
stylus-source-0.38.0 vendor/node_modules/mocha/lib/reporters/spec.js
stylus-source-0.37.0 vendor/node_modules/mocha/lib/reporters/spec.js
stylus-source-0.36.1 vendor/node_modules/mocha/lib/reporters/spec.js
stylus-source-0.36.0 vendor/node_modules/mocha/lib/reporters/spec.js
stylus-source-0.35.1 vendor/node_modules/mocha/lib/reporters/spec.js
stylus-source-0.35.0 vendor/node_modules/mocha/lib/reporters/spec.js
stylus-source-0.34.1 vendor/node_modules/mocha/lib/reporters/spec.js
stylus-source-0.34.0 vendor/node_modules/mocha/lib/reporters/spec.js
stylus-source-0.33.1 vendor/node_modules/mocha/lib/reporters/spec.js
stylus-source-0.33.0 vendor/node_modules/mocha/lib/reporters/spec.js
stylus-source-0.32.1 vendor/node_modules/mocha/lib/reporters/spec.js
stylus-source-0.32.0 vendor/node_modules/mocha/lib/reporters/spec.js
stylus-source-0.31.0 vendor/node_modules/mocha/lib/reporters/spec.js
stylus-source-0.30.1 vendor/node_modules/mocha/lib/reporters/spec.js
stylus-source-0.30.0 vendor/node_modules/mocha/lib/reporters/spec.js