Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upjest-dev-server timeout does not clean up processes started by 'command' #341
Comments
|
Also seeing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Using
jest-dev-server, set a command like:If the timeout occurs, you get this message:
The problem here is that
jest-dev-serverthen never sends the proper signals to the processes started by thecommand, meaning they get hanging. As a comparison, pressing 麓ctrl+c` after the server has started properly cleans up the resources.To Reproduce
Add the above config and a very short launchTimeout and notice how the started
commandnever stops (check e.g. via thepscommand).Expected behavior
jest-dev-servershould send the proper signals to launchedcommand, even after alaunchTimeoutoccured.