From ba79a0c36b6bde50445193cb08c5275680f019c9 Mon Sep 17 00:00:00 2001 From: ehmicky Date: Sun, 26 Oct 2025 18:34:01 +0000 Subject: [PATCH] Revert "Fix CI tests (#1195)" This reverts commit d3fd3659f1d48db4b7acb61c313ff72970b280be. --- test/return/result.js | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/test/return/result.js b/test/return/result.js index fb1818cf9b..30d8d4cfcb 100644 --- a/test/return/result.js +++ b/test/return/result.js @@ -111,16 +111,13 @@ test('result.isTerminated is false if not killed', async t => { t.false(isTerminated); }); -// Remove the condition after fixing the bug at https://github.com/sindresorhus/execa/issues/1193 -if (!isWindows) { - test('result.isTerminated is false if not killed and subprocess.kill() was called', async t => { - const subprocess = execa('noop.js'); - subprocess.kill(0); - t.true(subprocess.killed); - const {isTerminated} = await subprocess; - t.false(isTerminated); - }); -} +test('result.isTerminated is false if not killed and subprocess.kill() was called', async t => { + const subprocess = execa('noop.js'); + subprocess.kill(0); + t.true(subprocess.killed); + const {isTerminated} = await subprocess; + t.false(isTerminated); +}); test('result.isTerminated is false if not killed, in sync mode', t => { const {isTerminated} = execaSync('noop.js');