Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

TakenPilot/mocha-dot-reporter-async

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mocha-dot-reporter-async

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

Removed output from successful unit tests, since displaying dots when the process output is only displayed at the end is kinda pointless.

Build Status

Code Climate

Coverage Status

Dependencies

##Example

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

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

##To DO

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages