我正在尝试对我的项目开玩笑地实现vue-test-utils。
我的问题是关于babel.config.js(.babelrc)
我需要像vue-test-utils文档所说的那样设置我的babel.config.js
,
module.exports = {
presets: [
[
"env",
{ modules: false }
]
],
env: {
test: {
presets: [["env", { targets: { node: "current" } }]]
}
}
}
npm test
正常工作,但vue-cli-service serve
命令失败。
在vue-cli-3上默认使用babel.config.js
module.exports = {
presets: [
"@vue/app"
]
}
在这种情况下,vue-cli-service serve
工作正常,但npm test
崩溃了。
我是通天塔新手。有什么建议吗?