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?
To extend @fer's answer:
You can add these settings to
jasmineNodeOpts
to both see the current test and get stack trace right when test fails:I am building a jasmine reporter that does exactly what you want, jasmine-spec-reporter.
Add the isVerbose flag to the protractor config, it's false by default:
Add this dependency to your project:
npm install jasmine-spec-reporter --save-dev
And add this to your config file: