25

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

"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

请谁能告诉我如何解决这个错误。

4

4 回答 4

30

我遇到了同样的问题,为我解决的问题是当我运行单元测试时,不要使用

npm run test

改为使用:

npm test
于 2018-02-23T04:10:21.483 回答
21

运行npm test时它会消除ELIFECYCLE错误,因此您永远不会遇到这种体验。

参考代码

将测试脚本移动到不同的脚本名称后,您将开始看到ELIFECYCLE错误。

我的解决方法是exit 0在命令末尾添加一个。对于您的代码,它看起来像这样:

"scripts": {
  "test": "npm run testFlickr",
  "testFlickr": "mocha-phantomjs ./test/FlickrTest.html; exit 0" 
}
于 2015-11-05T00:16:10.697 回答
5

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

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

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

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

然后奇怪的节点错误应该消失。

于 2014-04-25T15:05:15.560 回答
5

这是使用时的一个问题npm run,它与 Mocha 在测试失败时退出代码 !== 0 有关。如果你在 Windows 上试试这个:

"scripts": {
  "test": "npm run testFlickr || ECHO.",
  "testFlickr": "mocha-phantomjs ./test/FlickrTest.html || ECHO." 
}
于 2017-05-23T18:12:50.057 回答