nconf-lite/test/fixtures/scripts/nconf-change-argv.js

17 lines
343 B
JavaScript
Raw Normal View History

/*
* nconf-change-argv.js: Test fixture for changing argv on the fly
*
2014-11-26 06:31:48 +00:00
* (C) 2011, Charlie Robbins and the Contributors.
*
*/
2014-11-26 06:31:48 +00:00
var nconf = require('../../../lib/nconf').argv();
//
// Remove 'badValue', 'evenWorse' and 'OHNOEZ'
//
process.argv.splice(3, 3);
nconf.stores['argv'].loadArgv();
process.stdout.write(nconf.get('something'));