You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This one has been puzzling me for a few days! This happens with all debuggers - VS Code is incorrectly passing noDebug: true for a debug session if it was previously run without debugging.
To repro:
create a simple JS script:
console.log('test');
Add a breakpoint and click Run -> Start Debugging and the breakpoint will be hit (correct)
Run again with Run -> Run Without Debugging and the breakpoint will not be hit (correct)
Run aagin with Run -> Start Debugging and the breakpoint will not be hit (incorrect)
@isidorn unsure if this is at all related to #100364 (seems like an opposite problem, perhaps related to the fix?)
The text was updated successfully, but these errors were encountered:
This one has been puzzling me for a few days! This happens with all debuggers - VS Code is incorrectly passing
noDebug: true
for a debug session if it was previously run without debugging.To repro:
@isidorn unsure if this is at all related to #100364 (seems like an opposite problem, perhaps related to the fix?)
The text was updated successfully, but these errors were encountered: