Describe the bug
There is at least one test in here that is incorrect and they are all failing silently due to using
instead of
This test in particular is broken:
process.argv = ['--FROMARG=in-the-argv'];
assert(initParam('FROMARG', 'mydefault'), 'in-the-argv');
assert(config.util.getEnv('FROMARG'), 'in-the-argv');
Because we ignore argv[0] and argv[1]