How can I view console.log output in an angularjs protractor jasmine test? As of now, the browser closes by itself too quickly.
more info - I am working with the ang
You could always just override console.log in your test :)
logMessages = []; console.log = function(message) { logMessages.push(message); }
You could also use $log instead of console.log and use a solution like this to put some hooks into the log messages: https://gist.github.com/lrvick/6938531