Hi,

On master, I've added a test runner called UndertowTestRunner which you can use in place of the ArquillianTestRunner during development to run unit tests in your IDE rather than on the command line. This means you get IDE support, and easy debugging support too. I know it made my life much easier.

It should be a drop-in replacement for ArquillianTestRunner, so you only need to change @RunWith(Arquillian.class) with @RunWith(UndertowTestRunner.class) but if it doesn't work in your case, don't hesitate to improve it. Also don't forget to revert the runner of the test back to Arquillian after you're done testing, because we want CI and command-line tests to use Arquillian.

Cheers.