What I'm looking for is a TestRunner implementation for running a suite of Java JUnit tests within a browser. The intention is that non-developers can execute the tests by visiting a browser page. Test results should be dynamically updated to the browser page with something like AJAX after each test and/or suite has completed.
I've seen a few attempts at this, but the ones I'm aware of execute all of the tests before showing any results to the browser. Take mistletoe for example.
Ideally, the implementation would be inspired by the JUnit testrunners found in IDEs such as IntelliJ IDEA or Eclipse. Is anyone aware of such a TestRunner?