Skip to content

Commit

Permalink
test: avoid left behind child processes
Browse files Browse the repository at this point in the history
Extend the Linux logic in test-child-process-exec-abortcontroller-promisified
to all POSIX platforms.
  • Loading branch information
richardlau committed Jan 19, 2023
1 parent 49be0ac commit 597d692
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ const invalidArgTypeError = {
name: 'TypeError'
};

const waitCommand = common.isLinux ?
'sleep 2m' :
`${process.execPath} -e "setInterval(()=>{}, 99)"`;
const waitCommand = common.isWindows ?
`${process.execPath} -e "setInterval(()=>{}, 99)"` :
'sleep 2m';

{
const ac = new AbortController();
Expand Down

0 comments on commit 597d692

Please sign in to comment.