AngularJS Protractor: Step-by-step progress logs

angularjs, angularjs-e2e, jasmine-spec-reporter, protractor

Solution

For that you can use the jasmine-spec-reporter for protractor. You'll have a visual feedback of all your passing and non-passing tests :

Easy to configure and looks really good in the console.

Hope this helps.

Problem

In the (now deprecated) angular scenario test runner, there was an option to create a runner.html page that would run the tests in an iFrame while reporting the progress, step-by-step, in the main page. Is there any way to get a similar step-by-step log for protractor tests? It does not need to be in an html page (console or log file would be fine).

Original source