You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@senssoft.apache.org by rf...@apache.org on 2017/04/06 12:57:42 UTC

incubator-senssoft-tap git commit: Fixed missing quotes around test reporter

Repository: incubator-senssoft-tap
Updated Branches:
  refs/heads/master 2120c64ea -> 0ccd7ab1c


Fixed missing quotes around test reporter


Project: http://git-wip-us.apache.org/repos/asf/incubator-senssoft-tap/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-senssoft-tap/commit/0ccd7ab1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-senssoft-tap/tree/0ccd7ab1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-senssoft-tap/diff/0ccd7ab1

Branch: refs/heads/master
Commit: 0ccd7ab1ca379c75b40f9c6c7faa5aaa1adcdc01
Parents: 2120c64
Author: Foley <rf...@draper.com>
Authored: Thu Apr 6 08:57:27 2017 -0400
Committer: Foley <rf...@draper.com>
Committed: Thu Apr 6 08:57:27 2017 -0400

----------------------------------------------------------------------
 tasks/test.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-senssoft-tap/blob/0ccd7ab1/tasks/test.js
----------------------------------------------------------------------
diff --git a/tasks/test.js b/tasks/test.js
index 3874ae6..c2e8a62 100644
--- a/tasks/test.js
+++ b/tasks/test.js
@@ -30,7 +30,7 @@ gulp.task('lint', () =>
 // Test JS
 gulp.task('mocha', () =>
   gulp.src(['test/**/*.js'], { read : false })
-    .pipe(plugins.mocha({ reporter : list }))
+    .pipe(plugins.mocha({ reporter : 'list' }))
     .on('error', plugins.util.log)
 );