Reputation: 13342
I'm trying to configure Scala Debuger.
I have specs2
tests:
@RunWith(classOf[JUnitRunner])
class DictionaryTest extends Specification { ...
Q: Are there some addition steps I should perform to start using/testingscala-debugger
?
Edit: why my screen is different than doc's screenshot. It seems Scala debugger was not On? At least I was hoping to see word 'Scala Display'
Upvotes: 2
Views: 1977
Reputation: 5712
Unfortunately, your probably hit a known limitation. Currently, the new debugger is available for the Scala launcher, but not for the JUnit launcher. Here is the relevant ticket.
You could work around it if you configured the test runner to wait for a remote debugger connection, and then connect the scala debugger as described here
Upvotes: 3