I was able to get this working with the following options for JasmineConsole reporter (note: this is in my jasmine/boot.js)
var ConsoleReporter = jasmineRequire.ConsoleReporter();
var consoleReporter = new ConsoleReporter({
env: env,
timer: new jasmine.Timer,
print: function (contents) {
if(typeof process !== 'undefined') {
process.stdout.write(contents);
} else {
console.log.apply(console, arguments)
}
}
});