Make mocha-phantom use tap reporter

This commit is contained in:
alex 2015-06-24 11:30:48 +01:00
parent 387d98ee2a
commit bb6a7ca6cf

View File

@ -239,7 +239,7 @@ gulp.task('default', ['clean', 'mocha'], function (cb) {
gulp.task('mocha', ['styles'], function () {
return gulp.src('./test/index.html')
.pipe($.mochaPhantomjs({reporter: 'list'}));
.pipe($.mochaPhantomjs({reporter: 'tap'}));
});
gulp.task('test', ['jshint', 'jscs', 'mocha']);