-
-
Notifications
You must be signed in to change notification settings - Fork 3k
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
fixes some signal handling #4239
Conversation
I think this needs changes from #4245 |
I'm going to close this one and add it to #4245. |
ah, nm, I see the issue. |
- `landing` reporter befouls the terminal up if `SIGINT` is issued - `--exit` test used an incorrect description, and also did not reliably handle `SIGINT` when running - `runMocha` helper returns the child process Ref: #4198
d2f29a2
to
7496f93
Compare
I don't have any idea how we could test the newly-uncovered lines (in the |
cc @arvidOtt and/or @raymondfeng this is short and low-impact, but would appreciate anybody taking a look. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So it would register "SIGINT" but the cursor would remain hidden? Not good. Good fix 👍
Not quite. What was happening was if someone was using the |
landing
reporter befouls the terminal up ifSIGINT
is issued--exit
test used an incorrect description, and also did not reliably handleSIGINT
when runningRef: #4198