Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Summary With the existing launch configuration, VS Code automatically appends `--inspect-brk=<random_port>` resulting in a command like `node --inspect-brk ${workspaceRoot}/node_modules/.bin/jest --runInBand --inspect-brk=35370`. This does not work because the debugger starts listening on port 9229, but Code attempts to attach to it on port 35370 (or whatever random port number it has selected). Adding the port parameter prevents Code from automatically appending the `--inspect-brk` flag and instructs Code attach to the debugger on port 9229. I don't think I'll need to update CHANGELOG.md for this, will I? ## Test plan This change does not include code per se, but I have run the launch configuration in my project and observed that it works properly.
- Loading branch information