mocha-spec-reporter-async

Used when reporting from Gulp. Outputs all test results at once to avoid an async console.log mess.


Keywords
mocha, spec, reporter, async
License
ISC
Install
npm install mocha-spec-reporter-async@0.5.7

Documentation

mocha-spec-reporter-async

Used when reporting from Gulp. Outputs all test results at once to avoid an async console.log mess.

Build Status

Code Climate

Coverage Status

Dependencies

NPM version

##Example

gulp.task('unit tests', function (done) {
  var mocha = require('gulp-mocha');

  return gulp.src('./test/unit/**/*.js', {read: false})
      .pipe(mocha({
        reporter: 'mocha-spec-reporter-async',
        growl: true,
        ui: 'bdd'
      }));
});

##To DO

  • Lower code complexity
  • Find better way to convert checkmarks and ecks between windows and linux/mac.