web-dev-qa-db-ja.com

Jestテストの実行中に予期しないトークン「インポート」エラーが発生しましたか?

この質問は何度も尋ねられたことに気づきましたが、私が遭遇したすべての解決策が私には役に立たないようです。 VueアプリのJestテストを実行しようとすると、次のエラーが発生します。

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:
 • 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://facebook.github.io/jest/docs/en/configuration.html

Details:

/node_modules/vue-awesome/icons/expand.js:1
({"Object.<anonymous>":function(module,exports,require,__dirname,__filename,global,jest){import Icon from '../components/Icon.vue'
                                                                                         ^^^^^^

SyntaxError: Unexpected token import

> 17 | import 'vue-awesome/icons/expand'

.babelrc:

{
  "presets": [
    ["env", {
      "modules": false,
      "targets": {
        "browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
      }
    }]
  ],
  "env": {
    "test": {
      "presets": [
        ["env", { "targets": { "node": "current" }}]
      ]
    }
  }
}

package.jsonのjest設定:

"jest": {
  "moduleFileExtensions": [
    "js",
    "vue"
  ],
  "moduleNameMapper": {
    "^@/(.*)$": "<rootDir>/src/$1"
  },
  "transform": {
    "^.+\\.js$": "<rootDir>/node_modules/babel-jest",
    ".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
  },
  "snapshotSerializers": [
    "<rootDir>/node_modules/jest-serializer-vue"
  ],
  "moduleDirectories": [
    "node_modules",
    "src"
  ]
}

Vueテスト用にマウントされているコンポーネントのスクリプトの最初のインポートは機能しているようですが、モジュール自体(import Icon from '../components/Icon.vue)は認識されません。

どうすればこれを解決できますか?

19
Don P

vue-awesomeがjestによって変換されることを確認する必要があるだけなので、jest設定に以下を追加します。

transformIgnorePatterns: ["/node_modules/(?!vue-awesome)"],

つまり、「node_modulesのvue-awesomeを除くすべてを無視します。

また、このエラーの原因となる可能性のある他の問題の包括的なリストも示します。 https://github.com/facebook/jest/issues/2081

3
jb.

新しいJestバージョンに更新した後にこの問題が発生した場合は、次のコマンドを実行してJestの内部キャッシュをクリアしてみてください。

jest --clearCache
0
sdgluck