UNPKG

327 BJavaScriptView Raw
1"use strict";
2
3var settings = {
4 mochaOpts: undefined, // --mocha_opts opts_file
5 mochaTestFolders: undefined, // --mocha_tests location (or array in magellan.json)
6
7 initialize: function (argv) {
8 settings.mochaOpts = argv.mocha_opts;
9 settings.mochaTestFolders = argv.mocha_tests;
10 }
11};
12
13module.exports = settings;