Since v1.0.0-rc2 , you can see crashes in real time:
In your transporter's configuration, add a jasmineNodeOpts object with the realtimeFailure option to true :
exports.config = { seleniumAddress: 'http://127.0.0.1:4444/wd/hub', specs: [ 'e2e/**/*.js' ], multiCapabilities: [ {'browserName': 'firefox'}, {'browserName': 'chrome'} ], baseUrl: 'http://localhost:8000', onPrepare: function() {}, jasmineNodeOpts: { realtimeFailure: true } };
A complete list of jasmine options is here: minijasminenode
And a detailed help file for the protractor here: referenceConf.js
source share