-
Notifications
You must be signed in to change notification settings - Fork 29.7k
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
Can't debug with random ports after upgrading to vscode 1.19.0. #40254
Comments
I just tried to set a specific port number. And it's works fine. |
@yisiqi what version of node.js are you using? Your runtime arguments look wrong to me since all but the first are not really runtime arguments. {
"name": "Debug Tests WebSocket",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/node_modules/.bin/jest",
"args": [
"--runInBand",
"src/websocket"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
} If you are using a node.js version < 8.0 but still want to use the "inspector" protocol, please add a |
Thanks @weinand , it's works. |
The launch config was always wrong. /cc @roblourens |
Steps to Reproduce:
Reproduces without extensions: No
The text was updated successfully, but these errors were encountered: