From 7ae7048e9f90e8365143820f953434e605c6e375 Mon Sep 17 00:00:00 2001 From: Adam Gastineau Date: Mon, 27 Jan 2025 11:29:31 -0800 Subject: [PATCH] Log stdout directly --- tests/library/signals.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/library/signals.spec.ts b/tests/library/signals.spec.ts index f3536f85fe..01cd869122 100644 --- a/tests/library/signals.spec.ts +++ b/tests/library/signals.spec.ts @@ -26,7 +26,7 @@ test('should close the browser when the node process closes', async ({ startRemo const remoteServer = await startRemoteServer('launchServer', { url: server.EMPTY_PAGE }); try { if (isWindows) - execSync(`taskkill /pid ${remoteServer.child().pid} /T /F`, { stdio: 'inherit' }); + console.log(execSync(`taskkill /pid ${remoteServer.child().pid} /T /F`, { stdio: 'inherit' })); else process.kill(remoteServer.child().pid); } catch (error) {