1

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.

Ole
  • 41,793
  • 59
  • 191
  • 359

1 Answers1

3
mocha --opts <path_to_opts_file>
satin
  • 697
  • 2
  • 7
  • 19