插件'gulp-mocha'中的SyntaxError Unexpected token =

时间:2016-07-28 12:21:39

标签: node.js travis-ci gulp-mocha

使用Node 4.3.2时,我在Travis-ci中收到以下错误:

SyntaxError in plugin 'gulp-mocha' Unexpected token =

使用节点6时一切正常,但不是4.3.2。这是堆栈跟踪:

[12:05:11] Starting 'build'...
[12:05:11] Finished 'build' after 13 μs
[12:05:11] Starting 'tests'...
SyntaxError in plugin 'gulp-mocha'
Message:
    Unexpected token =
Stack:
SyntaxError: Unexpected token =
    at exports.runInThisContext (vm.js:53:16)
    at Module._compile (module.js:373:25)
    at Object.Module._extensions..js (module.js:416:10)
    at Module.load (module.js:343:32)
    at Function.Module._load (module.js:300:12)
    at Module.require (module.js:353:17)
    at require (internal/module.js:12:17)

这是我正在运行的任务:

gulp.task('tests', ['build'], (cb) => {
    if (hasError) {
      cb();
      return;
    }

    return gulp.src('build/test/**/*.js', {read: false})
      .pipe(mocha())
      .on("error", handleError);
});

我该如何纠正?

正在使用旧版本的Node,因为这是一个AWS Lambda应用程序。

0 个答案:

没有答案