当 运行 mocha with nyc 时指定 mocha.opts 的位置?
Specifying the location of mocha.opts when running mocha with nyc?
是否可以在运行nyc mocha
时指定mocha.opts
的位置?我想把它放在根项目文件夹中。我在我的 npm 脚本中试过这个:
"scripts": {
"test": "nyc mocha --config ./mocha.opts"
},
那没有用。我确实得到了一个适用于 here 描述的设置的测试用例,但是 mocha.opts
在 test
目录中。
mocha --opts <path_to_opts_file>
是否可以在运行nyc mocha
时指定mocha.opts
的位置?我想把它放在根项目文件夹中。我在我的 npm 脚本中试过这个:
"scripts": {
"test": "nyc mocha --config ./mocha.opts"
},
那没有用。我确实得到了一个适用于 here 描述的设置的测试用例,但是 mocha.opts
在 test
目录中。
mocha --opts <path_to_opts_file>