业力测试通过但 npm 测试给出错误
karma test pass but npm test give error
我使用 https://github.com/AngularClass/angular2-webpack-starter 并遇到以下问题:当我在项目目录中并且 运行
karma start
然后我得到:
SUMMARY:
✔ 0 tests completed
但是当我 运行:
npm test
我得到:
SUMMARY:
✔ 0 tests completed
npm ERR! Test failed. See above for more details.
如果我运行:
npm run test
我得到:
SUMMARY:
✔ 0 tests completed
npm ERR! Darwin 16.1.0
npm ERR! argv "/usr/local/Cellar/node/7.1.0/bin/node" "/usr/local/bin/npm" "run" "test"
npm ERR! node v7.1.0
npm ERR! npm v4.0.2
npm ERR! code ELIFECYCLE
npm ERR! angular2-webpack-starter@5.0.5 test: `karma start`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the angular2-webpack-starter@5.0.5 test script 'karma start'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the angular2-webpack-starter package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! karma start
npm ERR! You can get information on how to open an issue for this project with:
npm ERR! npm bugs angular2-webpack-starter
npm ERR! Or if that isn't available, you can get their info via:
npm ERR! npm owner ls angular2-webpack-starter
npm ERR! There is likely additional logging output above.
npm ERR! Please include the following file with any support request:
npm ERR! /Users/Kamil/Desktop/Code/officewise/officewise_frontend/npm-debug.log
知道如何删除这个 npm ERR 吗?这对我来说很重要,因为我使用一些外部系统 运行 测试并报告存储库中新提交的错误(我的节点版本 v7.1.0(最新),npm 版本 4.0.2(最新),Mac OS塞拉利昂)。
默认情况下,如果没有 运行.
的测试,Karma 会出错并退出
要禁用此行为,您需要将此行添加到您的 Karma 配置中:
failOnEmptyTestSuite: false
我使用 https://github.com/AngularClass/angular2-webpack-starter 并遇到以下问题:当我在项目目录中并且 运行
karma start
然后我得到:
SUMMARY:
✔ 0 tests completed
但是当我 运行:
npm test
我得到:
SUMMARY:
✔ 0 tests completed
npm ERR! Test failed. See above for more details.
如果我运行:
npm run test
我得到:
SUMMARY:
✔ 0 tests completed
npm ERR! Darwin 16.1.0
npm ERR! argv "/usr/local/Cellar/node/7.1.0/bin/node" "/usr/local/bin/npm" "run" "test"
npm ERR! node v7.1.0
npm ERR! npm v4.0.2
npm ERR! code ELIFECYCLE
npm ERR! angular2-webpack-starter@5.0.5 test: `karma start`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the angular2-webpack-starter@5.0.5 test script 'karma start'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the angular2-webpack-starter package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! karma start
npm ERR! You can get information on how to open an issue for this project with:
npm ERR! npm bugs angular2-webpack-starter
npm ERR! Or if that isn't available, you can get their info via:
npm ERR! npm owner ls angular2-webpack-starter
npm ERR! There is likely additional logging output above.
npm ERR! Please include the following file with any support request:
npm ERR! /Users/Kamil/Desktop/Code/officewise/officewise_frontend/npm-debug.log
知道如何删除这个 npm ERR 吗?这对我来说很重要,因为我使用一些外部系统 运行 测试并报告存储库中新提交的错误(我的节点版本 v7.1.0(最新),npm 版本 4.0.2(最新),Mac OS塞拉利昂)。
默认情况下,如果没有 运行.
的测试,Karma 会出错并退出要禁用此行为,您需要将此行添加到您的 Karma 配置中:
failOnEmptyTestSuite: false