1

我想将 mocha 作为单元测试插件添加到我已经创建的 vue 项目中,该项目是使用 CLI 3 构建的,即 vue create myProj

这是针对 vue CLI 3.0.0+ 的,我当前的项目正在其中运行

以下是我运行命令时的错误

~$ vue 添加单元-摩卡

npm ERR! code E404
npm ERR! 404 Not Found - GET https://registry.npmjs.org/vue-cli-plugin-unit-mocha - Not found
npm ERR! 404
npm ERR! 404  'vue-cli-plugin-unit-mocha@latest' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\Piktorlabs\AppData\Roaming\npm-cache\_logs\2019-11-04T10_03_45_315Z-debug.log
 ERROR  command failed: npm install --loglevel error -D vue-cli-plugin-unit-mocha

因此根据https://www.npmjs.com/package/@vue/cli-plugin-unit-mocha上的 NPM 文档

它说要运行命令 ~$ vue add unit-mocha 在已经创建的项目中添加 mocha 单元测试插件,但是我在 CLI 中收到 404 错误,说 npm 目录不存在

4

1 回答 1

0

问题是我没有将 Vue cli 更新到最新版本,cli 版本是 2.6.0...一旦我将它更新到 4.0 0,问题就解决了

于 2019-11-04T13:06:08.687 回答