Reputation: 47090
Is it possible to specify the location of mocha.opts
when running nyc mocha
? I'd like to have it in the root project folder. I tried this in my npm script:
"scripts": {
"test": "nyc mocha --config ./mocha.opts"
},
That did not work. I did get a test case working for the setup described here however, with mocha.opts
in the test
directory.
Upvotes: 1
Views: 700