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

21

実行npm testするとエラーがスケルチさELIFECYCLEれるため、このような経験はありません。

コードへの参照

ELIFECYCLEテスト スクリプトを別のスクリプト名に移動すると、エラーが発生し始めます。

私の修正はexit 0、コマンドの最後に a を追加することです。あなたのコードでは、次のようになります。

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

そして、コマンド npm test を cmd で実行すると、テストは問題なく実行されます

いいえ、そうではありません。失敗したテストが 6 つあります。の終了コードはmocha-phantomjs、失敗したテストの数と同じです。mocha-phantomjs ./test/FlickrTest.html直接実行して、何が失敗しているかを確認してください。PhantomJS はお使いのブラウザーとは少し異なることに注意してください。デバッグが必要になる場合があります。

スクリプトの設定が奇妙です。あなたはただ持っているべきです:

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

その後、奇妙なノード エラーは解消されます。

于 2014-04-25T15:05:15.560 に答える