I've setup a Eclipse kepler (v4.3.2) with Chromium JavaScript Remote Debugger to be able to remote debug a node.js process (Connect to V8Debugger). Then I have started protractor with
node --debug-brk protractor.js conf.js
Where protractor.js is the shellscript file inside the bin folder of the node_module protractor directory missing the first line which starts node. So node is then startet in debug mode listening on port 5858 for debugger connection. Inside eclipse I have configured a Standalone V8 VM Debugger Configuration for connecting on local port 5858. After connecting to the node.js server it hits the first breakpoint inside the protractor.js file. But when resuming/continue execution it repeats "debugger listening on port 5858" inside the console and do not continue with testing.
Can someone tell me what's the problem with this?
Regards, Sebastian