diff --git a/tests/library/signals.spec.ts b/tests/library/signals.spec.ts index 50bbd05f8c..0f36582f34 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: 'ignore' }); + execSync(`taskkill /pid ${remoteServer.child().pid} /T /F`); else process.kill(remoteServer.child().pid); } catch (error) {