--show-config should not log.info so it can be JSON parseable

This commit is contained in:
Jonathan Lipps 2015-12-02 11:33:36 -08:00
Родитель 2ce8a8d275
Коммит 053a62bf59
2 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -54,7 +54,7 @@ function warnNodeDeprecations () {
async function showConfig () {
let config = await getAppiumConfig();
logger.info(JSON.stringify(config));
console.log(JSON.stringify(config));
}
function getNonDefaultArgs (parser, args) {

Просмотреть файл

@ -36,13 +36,13 @@ describe('Config', () => {
});
describe('showConfig', () => {
before(() => {
sinon.spy(logger, "info");
sinon.spy(console, "log");
});
it('should log the config to logger.info', async () => {
it('should log the config to console', async () => {
let config = await getAppiumConfig();
await showConfig();
logger.info.calledOnce.should.be.true;
logger.info.getCall(0).args[0].should.contain(JSON.stringify(config));
console.log.calledOnce.should.be.true;
console.log.getCall(0).args[0].should.contain(JSON.stringify(config));
});
});
});