一尘不染

运行测试时出现npm错误ELIFECYCLE

node.js

我正在使用mocha-phantomjs设置进行单元测试。我有以下package.json脚本来运行测试。

"scripts": {
"test": "npm run testFlickr",
"testFlickr": "mocha-phantomjs ./test/FlickrTest.html" 
}

在浏览器中可以正常运行。当我npm test在cmd中运行命令时,测试运行正常,但同时也会出现以下错误

3 passing (5s)
6 failing


npm ERR! flickr-test@ testFlickr: `mocha-phantomjs ./test/FlickrTest.html`
npm ERR! Exit status 6
npm ERR!
npm ERR! Failed at the flickr-test@ testFlickr script.
npm ERR! This is most likely a problem with the flickr-test package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     mocha-phantomjs ./test/FlickrTest.html
npm ERR! You can get their info via:
npm ERR!     npm owner ls flickr-test
npm ERR! There is likely additional logging output above.
npm ERR! System Windows_NT 6.1.7600
npm ERR! command "C:\\Program Files\\nodejs\\\\node.exe" "C:\\Program Files\\nod
ejs\\node_modules\\npm\\bin\\npm-cli.js" "run" "testFlickr"
npm ERR! cwd C:\Users\user\Desktop\test
npm ERR! node -v v0.10.26
npm ERR! npm -v 1.4.3
npm ERR! code ELIFECYCLE
npm ERR!
npm ERR! Additional logging details can be found in:
npm ERR!     C:\Users\user\Desktop\test\npm-debug.log
npm ERR! not ok code 0
npm ERR! Test failed.  See above for more details.
npm ERR! not ok code 0

请任何人告诉我如何解决此错误。


阅读 883

收藏
2020-07-07

共1个答案

一尘不染

当我在cmd中运行命令npm test时,测试运行正常

不,他们不是。您有6个失败的测试。的退出代码mocha-phantomjs等于测试失败的次数。mocha-phantomjs ./test/FlickrTest.html直接运行,看看有什么问题。意识到PhantomJS与您的浏览器有些不同-
您可能必须对其进行调试

您的脚本设置很奇怪。您应该只有:

"scripts": {
   "test": "mocha-phantomjs ./test/FlickrTest.html"
}

然后,奇数节点错误应消失。

2020-07-07