Is there a .mocha file where I can specify defaults such as --no-colors?

55,429

Solution 1

Yes. You can create a file ./test/mocha.opts and in the file you can specify --no-colors.

See mocha.opts on Mocha Doc for more information.

Solution 2

Mocha recommends mocha --config=.mocharc.json.

There are new formats too, like yaml. See some examples.


Old answer:

The default is ./test/mocha.opts. You can pass a custom path with the --opts parameter :

mocha --opts ./mocha.opts

Useful in case you don’t store your tests in test/ folder, but next to code files, for example.

Any name and extension seems to work, so you can even do mocha --opts .mocharc if you want it to go well with .jshintrc, .babelrc and the like.

Solution 3

In mocha 6+ the mocha.opts was changed to legacy and the new place to define your configuration is a .mocharc file that can have different formats (JSON, YAML, JS) as described in the docs or a JSON config added to the package.json using mocha key.

Specifying your own path to mocha config is done using --config <file> but mocha uses any .mocharc.* file as default in order described in the docs (JS, YAML, YML, JSON) and also automatically uses mocha key from package.json with lower priority than a given config file.

Share:
55,429
mcandre
Author by

mcandre

Programmer, book reader, film scoffer.

Updated on July 08, 2022

Comments

  • mcandre
    mcandre almost 2 years

    I'd like to set some defaults for mocha without having to type them each time. Does mocha look for a config file / dotfile anywhere, as jshint looks for .jshintrc and npm looks for package.json?

    • ichigolas
      ichigolas about 4 years
      The accepted answer is now deprecated. I suggest accepting the new one (stackoverflow.com/a/54804446/1740079) to prevent more people from using the old approach.
  • DBrown
    DBrown almost 8 years
    This is (or at least was), a very obscure function. I had given up hope for such a thing long ago, and thank you for pointing out it's possible now. :)
  • Byron Whitlock
    Byron Whitlock almost 8 years
    THANK YOU! Tests should really be next to files. Locality is important!
  • Jared Dykstra
    Jared Dykstra almost 7 years
    Is it possible for the contents of the file to be JSON?
  • gabssnake
    gabssnake over 6 years
    It doesn’t seem like so. The CLI splits the content by spaces and then parses it with commander module. commander’s parser expects a string array. mocha source: github.com/nishigori/mocha/blob/… - commander source: github.com/tj/commander.js/blob/…
  • gabssnake
    gabssnake over 6 years
    You could launch mocha in a script and pass your JSON file contents. See: github.com/mochajs/mocha/wiki/…
  • andy mccullough
    andy mccullough over 6 years
    strange, I couldnt get --config ./mocha.opts to work as per their official docs but --opts ./mocha.opts worked... thanks!
  • Peter W
    Peter W almost 5 years
    An example .mocharc.js file is here: github.com/mochajs/mocha/blob/master/example/config/.mocharc‌​.js (and there are other formats in that directory as well).
  • Katie Kilian
    Katie Kilian over 4 years
    This has been deprecated. See @migg's answer here.
  • Martin Capodici
    Martin Capodici over 2 years
    This will no longer work. See: stackoverflow.com/questions/60283197/…
  • gabssnake
    gabssnake over 2 years
    Thanks @MartinCapodici, updated the answer to reflect the newest mocha behavior