我正在为我的项目设置 nyc/mocha。我想在--exit
带/不带 nyc 运行 mocha 时将选项传递给 mocha。
这是我的packages.json:
"scripts": {
"start": "node ./app",
"test": "./node_modules/.bin/mocha --exit",
"test-with-coverage": "nyc --reporter=html mocha --reporter mochawesome --exit",
"apidoc": "apidoc -i routes/ -o apidocs/"
}
但是当我运行 npm test 或 npm run test-with-coverage 时,这会引发无效选项错误。
你如何将任何选项从 npm 传递给 mocha?