作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
得到这个错误;
> weather-app@1.0.0 test C:\Users\Ofirs\Desktop\n-4-11-chaining
> mocha **/*.test.js
module.js:540
throw err;
^
Error: Cannot find module 'tap'
at Function.Module._resolveFilename (module.js:538:15)
当尝试通过“npm run test-watch”运行 mocha 时,这里是我的 package.json 文件:
{
"name": "weather-app",
"version": "1.0.0",
"description": "",
"main": "test.js",
"scripts": {
"test": "mocha **/*.test.js",
"test-watch": "nodemon --exec \"npm test\""
},
"author": "",
"license": "ISC",
"dependencies": {
"request": "^2.83.0",
"yargs": "^4.8.1"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^4.1.0",
"supertest": "^3.0.0"
}
}
请帮我找出问题所在。和平
最佳答案
无需帮助,问题已解决。我刚刚在“mocha”之后添加了另一个“*”。
关于node.js - 错误 : Cannot find module 'tap' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48308684/
我是一名优秀的程序员,十分优秀!