-
Notifications
You must be signed in to change notification settings - Fork 1.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
Process Launcher does not clean up sigkill timeout #946
Comments
pkozlowski-opensource
added a commit
to pkozlowski-opensource/karma
that referenced
this issue
Apr 30, 2014
By default browsers are killed with `process.kill()` but it might happen that a process doesn't play nicelly and doesn't exit so there is a timeout after which a process is SIGKILL-ed. Before this commit the mentioned timeout wasn't cleared on clean process exit, preventing Karma from exiting just after all tests were run. Fixes karma-runner#946
This was referenced Apr 30, 2014
pkozlowski-opensource
added a commit
to pkozlowski-opensource/karma
that referenced
this issue
May 1, 2014
By default browsers are killed with `process.kill()` but it might happen that a process doesn't play nicelly and doesn't exit so there is a timeout after which a process is SIGKILL-ed. Before this commit the mentioned timeout wasn't cleared on clean process exit, preventing Karma from exiting just after all tests were run. Fixes karma-runner#946
pkozlowski-opensource
added a commit
to pkozlowski-opensource/karma
that referenced
this issue
May 8, 2014
By default browsers are killed with `process.kill()` but it might happen that a process doesn't play nicelly and doesn't exit so there is a timeout after which a process is SIGKILL-ed. Before this commit the mentioned timeout wasn't cleared on clean process exit, preventing Karma from exiting just after all tests were run. Fixes karma-runner#946
This was referenced Sep 27, 2018
This was referenced May 25, 2019
1 task
1 task
1 task
1 task
Open
1 task
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When killing a browser, the sigkill timeout has to be cleared in
_onProcessExit
.The text was updated successfully, but these errors were encountered: