1

I installed this open source projects and mocha tests run but I want to debug the functions called by the tests but when I try to debug (using mocha --debug-brk), i see that debug is in the mocha code itself..

How do i accomplish this?

Tolga E
  • 12,188
  • 15
  • 49
  • 61

1 Answers1

2

I get past this same issue by using node-inspector to add my real breakpoint, and just click pause/continue, which will stop at the real breakpoint then.

fakewaffle
  • 2,981
  • 1
  • 18
  • 15