You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
321 B
17 lines
321 B
|
7 months ago
|
/*
|
||
|
|
* nconf-change-argv.js: Test fixture for changing argv on the fly
|
||
|
|
*
|
||
|
|
* (C) 2011, Nodejitsu Inc.
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
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'));
|
||
|
|
|