Ole
Ole

Reputation: 47090

Specifying the location of mocha.opts when running mocha with nyc?

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

Answers (1)

satin
satin

Reputation: 707

mocha --opts <path_to_opts_file>

Upvotes: 3

Related Questions