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
I'm running into trouble using run-p -r .... Using this package.json, executing npm x run-p -r sleep2 sleep4 (on a *nix host) should start two sleepers which should both terminate after two seconds. The expected output is wakey wakey as the 4-second sleeper should be terminated right after the first one finishes.
However, I have to wait the full 4 seconds for the run-p command to terminate and rise and shine is printed as well. According to my understanding of what run-p -r is supposed to do this is unexpected. Kindly correct me if I'm wrong.
This may be related to #139, although sleep certainly is not misbehaving :)
The text was updated successfully, but these errors were encountered:
On windows client running npm run test:sb works as expected.
On ci runner (gitlab-ci, docker agent, node:lts-slim) running the same command the server keep alive.
I'm running into trouble using
run-p -r ...
. Using this package.json, executingnpm x run-p -r sleep2 sleep4
(on a *nix host) should start two sleepers which should both terminate after two seconds. The expected output is wakey wakey as the 4-second sleeper should be terminated right after the first one finishes.However, I have to wait the full 4 seconds for the
run-p
command to terminate and rise and shine is printed as well. According to my understanding of whatrun-p -r
is supposed to do this is unexpected. Kindly correct me if I'm wrong.This may be related to #139, although
sleep
certainly is not misbehaving :)The text was updated successfully, but these errors were encountered: