@alexbosworth/caporal
Version:
A full-featured framework for building command line applications (cli) with node.js
39 lines (28 loc) • 758 B
JavaScript
/* global Program, logger, should, makeArgv */
const program = new Program();
program
.logger(logger)
.version('1.0.0')
.reset()
.command('foo', 'My foo')
.action(function() {
this.log("This should NOT be displayed");
this.debug('debug should NOT be displayed');
this.warn('This should be displayed');
});
describe('Passing --quiet', () => {
it(`should only output warnings & errors`, (done) => {
let output = 0;
const listener = function(out, level, txt) {
output++
};
logger.on('logging', listener);
program.parse(makeArgv(['foo', '--quiet']));
setImmediate(() => {
should(output).eql(1);
logger.removeListener('logging', listener);
done();
})
});
});
;