UNPKG

311 BJavaScriptView Raw
1var settings = {
2 mochaOpts: undefined, // --mocha_opts opts_file
3 mochaTestFolders: undefined, // --mocha_tests location (or array in magellan.json)
4
5 initialize: function (argv) {
6 settings.mochaOpts = argv.mocha_opts;
7 settings.mochaTestFolders = argv.mocha_tests;
8 }
9};
10
11module.exports = settings;
\No newline at end of file