Reactを使用してマイクロフロントエンドを作成するために、Single SPAフレームワークを使用しています。
rub ビルドではエラーは発生しません。ただし、テストまたはカバレッジの実行中に次のエラーがスローされます。
エラーの詳細:
テスト スイートを実行できませんでした
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'
いくつかの分析の後、私の発見:
- 問題はスプレッド オペレーターによるものです。(取り外せば動作します)
- スプレッド演算子は、関数で使用すると機能しますが、React コンポーネントでは機能しません。
例: 失敗: <MyReactComponent {...props} /> 正常に動作: 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"
}
]
]
}
}
}
どんなガイダンスも役に立ちます。