Skip to content

Instantly share code, notes, and snippets.

@mikaelbr
Created January 18, 2014 22:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikaelbr/8497566 to your computer and use it in GitHub Desktop.
Save mikaelbr/8497566 to your computer and use it in GitHub Desktop.
Example gulpfile with no colors on gulp-mocha
var gulp = require('gulp');
var mocha = require('gulp-mocha');
gulp.task('default', function () {
gulp.src('test/*.js')
.pipe(mocha({
useColors: false
}));
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment