I just started with unit test my angular app with karma. Everything working as expected
Chrome 26.0 (Windows): Executed 1 of 1
Chrome 26.0 (Windows): Executed 1 of 1 SUCCESS (0.878 secs / 0.112 secs)
However, is there any way to output more info about the result of the test. For example, Suite and test names it is executing and their result. I've read few tutorials where Jasmine test result outputs in browser. I'm wondering it can be achieved in karma too.
singleRun = false
in test runner configuration (at least there is such attribute in Karma Test Runner - karma-runner.github.io/0.8/config/configuration-file.html), that way the browser will not close after tests. – the-lay