diff --git a/test/test-node-koa.js b/test/test-node-koa.js index ffaf1d2c..8f7a527a 100644 --- a/test/test-node-koa.js +++ b/test/test-node-koa.js @@ -78,7 +78,7 @@ const killSubProcess = (cp) => { // In case of POSIX and `SIGINT` signal, send it to the main process group only. try { - process.kill(-cp.pid, 'SIGINT'); + process.kill(cp.pid, 'SIGKILL'); } catch (e) { // the process might have already stopped }