Why “gulp-jest” is failing with: “Please run node with the --harmony flag!”?

亡梦爱人 提交于 2020-01-02 06:31:15

问题


I get the following error when running gulp test:

Error: Please run node with the --harmony flag!

Here is my gulp task:

var jest = require('gulp-jest');

gulp.task('test', function() {
  return gulp.src('src/**/__tests__').pipe(jest({
    rootDir: 'src',
    scriptPreprocessor: '../node_modules/6to5-jest',
    unmockedModulePathPatterns: [ 'react' ]
  }));
});

To reproduce: https://github.com/SEEK-Jobs/react-playground

Note that npm test works properly (test is failing as expected), but gulp test fails with the error above. Both npm test and gulp test have the same config object:

{
  rootDir: 'src',
  scriptPreprocessor: '../node_modules/6to5-jest',
  unmockedModulePathPatterns: [ 'react' ]
}

What am I doing wrong?


回答1:


As far as I can tell the error is thrown from jest-cli.

The reason you don't get it with npm test is that you probably configured npm to run the jest bin script directly, which uses harmonize to programmatically set the --harmony flag.

You can fix by installing harmonize and putting require('harmonize')() in your gulpfile.




回答2:


It was a bug in gulp-eslint, and it is fixed now in version 0.3.0.



来源:https://stackoverflow.com/questions/28315796/why-gulp-jest-is-failing-with-please-run-node-with-the-harmony-flag

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!