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
We found the subprocess-worker tests (which were disabled) were breaking because startSubprocessWorker is called without arguments, but it assumes it will receive an options object. The simplest fix is to give it a default:
however we should look at the two places from which that is called and build a more uniform signature, maybe startSubprocessWorker(execPath, options = {}).
The text was updated successfully, but these errors were encountered:
We found the subprocess-worker tests (which were disabled) were breaking because
startSubprocessWorker
is called without arguments, but it assumes it will receive anoptions
object. The simplest fix is to give it a default:however we should look at the two places from which that is called and build a more uniform signature, maybe
startSubprocessWorker(execPath, options = {})
.The text was updated successfully, but these errors were encountered: