Test Vue with Jest fail, Jest encountered an unexpected token, SyntaxError: Unexpected token import

前端 未结 2 825
粉色の甜心
粉色の甜心 2020-12-21 18:16

I test Vue project with jest, bug I got errors says:

Jest encountered an unexpected token and SyntaxError: Unexpected token import

2条回答
  •  没有蜡笔的小新
    2020-12-21 18:34

    I had a similar problem and "babel-plugin-transform-es2015-modules-commonjs" is working for me

    npm i -D babel-plugin-transform-es2015-modules-commonjs

    .babelrc config "plugins":["transform-es2015-modules-commonjs"]

提交回复
热议问题