You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many tests, such as the process.off signal test, involve sending signals to processes via ChildProcess.kill or Deno.kill. It turns out that windows doesn't really have an easy programmatic way of sending "signals", and so our implementations actually just kill the process. This means that a lot of the signal handling code for windows lacks unit tests.
The text was updated successfully, but these errors were encountered:
Originally spotted in #22757 (comment).
Many tests, such as the process.off signal test, involve sending signals to processes via
ChildProcess.kill
orDeno.kill
. It turns out that windows doesn't really have an easy programmatic way of sending "signals", and so our implementations actually just kill the process. This means that a lot of the signal handling code for windows lacks unit tests.The text was updated successfully, but these errors were encountered: