NodeVsDebugger
NodeVsDebugger copied to clipboard
How to set a wait timeout?
If you are doing async it doesn't wait. i.e.
setTimeout(function() {
//some code
}, 1000);
The debugger will prematurely exit and you can't debug.
How can I make it stay a period of time?
Hello!
I cannot reproduce this bug. Do you have some code inside the function? Do you set a breakpoint on that code?