From 218b407f3032f93fa0b84867bff8e4009c64f4cc Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Wed, 20 May 2015 13:15:39 -0400 Subject: [PATCH] Remove Mocha notification integration It doesn't work in tmux and causes the process to hang. --- gulpfile.coffee | 3 +-- package.json | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/gulpfile.coffee b/gulpfile.coffee index 820a9db6..34e5418e 100644 --- a/gulpfile.coffee +++ b/gulpfile.coffee @@ -6,7 +6,6 @@ coffee = require('gulp-coffee') markedMan = require('gulp-marked-man') coffeelint = require('gulp-coffeelint') shell = require('gulp-shell') -mochaNotifierReporter = require('mocha-notifier-reporter') packageJSON = require('./package.json') OPTIONS = @@ -30,7 +29,7 @@ gulp.task 'man', -> gulp.task 'test', -> gulp.src(OPTIONS.files.tests, read: false) .pipe(mocha({ - reporter: mochaNotifierReporter.decorate('landing') + reporter: 'landing' })) gulp.task 'coffee', [ 'test', 'lint', 'json' ], -> diff --git a/package.json b/package.json index 889a322c..82f36755 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,6 @@ "gulp-shell": "^0.2.11", "gulp-util": "~3.0.1", "mocha": "~2.0.1", - "mocha-notifier-reporter": "~0.1.0", "run-sequence": "~1.0.2", "sinon": "~1.12.1", "sinon-chai": "~2.6.0"