-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"No active session" when I run require"jester".debug()
#17
Comments
Hi @melkster , Thanks for reaching out to me. Unfortunately I'm not sure what the root cause is, but I can give you my own configuration: dap.adapters.node2 = {
type = 'executable',
command = 'node',
args = {os.getenv('HOME') .. '/apps/node/out/src/nodeDebug.js'}, -- adjust the path!
} Could you kindly try it out with this config? Thanks and best regards, |
@David-Kunz I think I found the problem: the debugger tries to run Now I also get another weird behaviour when using your config: After setting a breakpoint and doing |
I'm guessing that the first problem is here since |
Hi @melkster,
Yes, I also get this warning sometimes (even though everything works). This seems to be a problem with
Oh thanks for the hint! I fixed it: 5b66eb7 Best regards, |
Ok, thank you! |
Hi @melkster , I followed the discussion and saw that the default configuration seems to be wrong, I fixed that in the newest version of Thanks for the report and best regards, |
After updating, the error message seems to have changed to "Breakpoint set but not yet bound". Also, the "No active session" message still is printed when I do |
Thanks @melkster , I'll have a look. |
I have same issue.:-( |
I'm having this problem too. |
@David-Kunz @dimas-cyriaco @gxbsst hey! I hope you are doing well. Removing the |
Hi! When I run
require"jester".debug()
on a jest test I get the message "No active session". If I runrequire"jester".debug_file()
nothing happens. Do you know what I could be doing wrong?Here's a link to my dap/jester configuration.
The text was updated successfully, but these errors were encountered: