【问题标题】:Jest babel - Spread Operator - Jest encountered an unexpected tokenJest babel - Spread Operator - Jest 遇到了意外的令牌
【发布时间】:2021-07-01 16:46:24
【问题描述】:

我正在使用 Single SPA 框架来使用 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 config如下

  "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"
          }
        ]
      ]
    }
  }
}

任何指导都会有所帮助。

【问题讨论】:

  • 你的测试中props 是什么?
  • 我正在尝试围绕现有的 React 组件(如 react-select)编写一个包装器,并希望使用一些道具并将其他道具传递给 react-select。

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


【解决方案1】:

我遇到了完全相同的问题。 在我的情况下,它是通过添加来修复的:

“@babel/modules”在 babel.config.json 中的“presets”数组中

"presets": [
    "@babel/preset-env",
    "@babel/preset-react",
    "@babel/preset-typescript",
    "@babel/modules"
  ],

【讨论】:

    猜你喜欢
    • 2019-12-29
    • 1970-01-01
    • 2019-12-13
    • 1970-01-01
    • 1970-01-01
    • 2021-12-07
    • 1970-01-01
    • 1970-01-01
    • 2019-03-22
    相关资源
    最近更新 更多