Jest babel - Spread Operator - Jest 遇到意外令牌

时间:2021-07-01 16:46:24

标签: reactjs jestjs babeljs babel-jest single-spa

我正在使用 Single SPA frameowrk 使用 React 创建一个微前端。

rub build 时没有错误。但是在运行测试或覆盖时抛出以下错误。

错误详情:

测试套件运行失败

Jest encountered an unexpected token

This usually means that you are trying to import a file which Jest cannot parse, e.g. it's not plain JavaScript.

By default, if Jest sees a Babel config, it will use that to transform your files, ignoring "node_modules".

Here's what you can do:
 • If you are trying to use ECMAScript Modules, see https://jestjs.io/docs/en/ecmascript-modules for how to enable it.
 • To have some of your "node_modules" files transformed, you can specify a custom "transformIgnorePatterns" in your config.
 • If you need a custom transformation specify a "transform" option in your config.
 • If you simply want to mock your non-JS modules (e.g. binary assets) you can stub them out with the "moduleNameMapper" config option.

You'll find more details and examples of these config options in the docs:
https://jestjs.io/docs/en/configuration.html

Details:

D:\source\projects\system-ui-components\node_modules\@babel\runtime\helpers\esm\extends.js:1
({"Object.<anonymous>":function(module,exports,require,__dirname,__filename,global,jest){export default function _extends() {
                                                                                         ^^^^^^

SyntaxError: Unexpected token 'export'

经过一些分析,我的发现:

  1. 问题是由点差运算符引起的。 (删除后有效)
  2. Spread 运算符在函数中使用时起作用,但在 React 组件中不起作用。

例如:失败: 工作正常: const a = { id:1 , ...props }

其他信息:

使用Babel7,babel配置如下

  "presets": [
    "@babel/preset-env",
    "@babel/preset-react",
    "@babel/preset-typescript"
  ],
  "plugins": [
    [
      "@babel/plugin-transform-runtime",
      {
        "useESModules": true,
        "regenerator": false
      }
    ]
  ],
  "env": {
    "test": {
      "presets": [
        [
          "@babel/preset-env",
          {
            "targets": "current node"
          }
        ]
      ]
    }
  }
}

任何指导都会有所帮助。

0 个答案:

没有答案