Added node version to check logs.

This commit is contained in:
patelravi 2019-02-05 15:41:48 +05:30
parent f59cfc3114
commit f0993bfab1

View file

@ -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' }))