Custom Jasmine reporter in Protractor tests

jasmine, jasmine-spec-reporter, protractor

Solution

I am building a jasmine reporter that does exactly what you want, jasmine-spec-reporter.

To configure in protractor.conf.js:

onPrepare: function(){
    var SpecReporter = require('jasmine-spec-reporter').SpecReporter;
    jasmine.getEnv().addReporter(new SpecReporter({displayStacktrace: 'all'}));
}

Problem

I can not find how to change reporter style in protractors runner using jasmine framework. What I have right now is: But I would like something more like: Is there a way to add custom reporter for jasmine that would show current test running instead of DOTS and Fs?

Original source