Feedback from the visual diff workshop
console.log
/ console.error
doesn't work.
Got a solution working with:
const log = (string) => {
process.stdout.write(' \n\n');
process.stdout.write(string);
process.stdout.write(' \n\n');
};
I think that log('verbose', ...)
in helpers.js
should be good enough :) I want to make sure that console log messages aren't printed on Travis, so the verbose log should work for that task
Most helpful comment
I think that
log('verbose', ...)
inhelpers.js
should be good enough :) I want to make sure that console log messages aren't printed on Travis, so the verbose log should work for that task