From 0d939f30f038d98d0e9e75b0c718be46226e1585 Mon Sep 17 00:00:00 2001 From: ehmicky Date: Sun, 30 May 2021 19:39:53 +0200 Subject: [PATCH] Fix randomly failing test (#464) --- test/fixtures/detach | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixtures/detach b/test/fixtures/detach index eb50d7b810..80f8980097 100755 --- a/test/fixtures/detach +++ b/test/fixtures/detach @@ -3,6 +3,6 @@ const execa = require('../..'); -const subprocess = execa('node', ['./test/fixtures/noop'], {detached: true}); +const subprocess = execa('node', ['./test/fixtures/forever'], {detached: true}); console.log(subprocess.pid); process.exit();