commander inverts the meaning of program args by itself ... nice, I guess

This commit is contained in:
Bruno Windels 2018-08-23 10:04:37 +02:00
parent a65d6af8c5
commit 2321e43fd8

View file

@ -52,7 +52,7 @@ async function runTests() {
} catch(err) {
failure = true;
console.log('failure: ', err);
if (!program.noLogs) {
if (program.logs) {
for(let i = 0; i < sessions.length; ++i) {
const session = sessions[i];
documentHtml = await session.page.content();