From f0993bfab1057e9b79cda81129d880414aa1698f Mon Sep 17 00:00:00 2001 From: patelravi Date: Tue, 5 Feb 2019 15:41:48 +0530 Subject: [PATCH] Added node version to check logs. --- gulpfile.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index 371cdcb..6898f9c 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -43,6 +43,8 @@ gulp.task('pre-test', function () { gulp.task('test', ['pre-test'], function (cb) { var mochaErr; + console.log('Running tests with node version', process.version); + gulp.src('test/**/*.js') .pipe(plumber()) .pipe(mocha({ reporter: 'spec' }))