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

Mocha reporter used with gulp to report spec output when all tests are finished

Notifications You must be signed in to change notification settings

TakenPilot/mocha-spec-reporter-async

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mocha-spec-reporter-async

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

⚠ Warning This library is deprecated. The underlying libraries that this package relies on are either unmaintained or have security warnings. I'm deprecating this project until someone rewrites it with modern tooling.

##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.

About

Mocha reporter used with gulp to report spec output when all tests are finished

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published