-
Notifications
You must be signed in to change notification settings - Fork 27.2k
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
test: ability to use node debugger #56277
Conversation
@escherstair I think I fixed it in #57159 |
And so this PR is not necessary anymore? |
Hi @feedthejim |
@feedthejim still not working in v14, right? so probably not fixed from #57159 |
Looks like it's already fixed on canary, I merged the canary branch and updated the PR title. Thanks for adding the test! |
Fixes ability to run
NODE_OPTIONS='--inspect' next dev
as described in docs, by removing inspect option from NODE_OPTIONS arg passed to worker process.This bug seem to have been introduced in 7d93808 as a part of a some refactoring. See how
getNodeOptionsWithoutInspect
is no longer used.Fixes #55862