intercept-stdout
intercept-stdout copied to clipboard
Test fails in Windows
Very minor point but in Windows os.EOL
returns '\r\n' but node writes \n
so the last 2 tests fail..
// console.js#38
Console.prototype.log = function() {
this._stdout.write(util.format.apply(null, arguments) + '\n');
};
I would offer a pr but I can't test on UNIX...
Thanks, will look into this once I have a windows machine in front of me.