Неожиданная ошибка "импортировать" токена при запуске тестов Jest?

Я понимаю, что этот вопрос задавали несколько раз, но все решения, с которыми я сталкивался, похоже, не работают для меня. При попытке запустить тесты Jest для приложения Vue я столкнулся с следующей ошибкой.

Jest encountered an unexpected token

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

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

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

jest config в package.json:

"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) не распознается.

Как я могу это решить?

Ответ 1

Вам просто нужно убедиться, что vue-awesome будет преобразован jest, поэтому добавьте следующее в ваш jest config:

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

что означает: "Игнорировать все в node_modules, кроме vue-awesome.

Также здесь приведен исчерпывающий список других проблем, которые могут вызвать эту ошибку: https://github.com/facebook/jest/issues/2081

Ответ 2

Если вы столкнулись с этой проблемой после обновления до новой версии Jest, попробуйте очистить внутренний кеш Jest:

jest --clearCache