We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 141583c commit 962e01fCopy full SHA for 962e01f
src/server/processLauncher.ts
@@ -164,7 +164,7 @@ export async function launchProcess(options: LaunchProcessOptions): Promise<Laun
164
// Force kill the browser.
165
try {
166
if (process.platform === 'win32')
167
- childProcess.execSync(`taskkill /pid ${spawnedProcess.pid} /T /F`);
+ childProcess.execSync(`taskkill /pid ${spawnedProcess.pid} /T /F`, { stdio: 'ignore' });
168
else
169
process.kill(-spawnedProcess.pid, 'SIGKILL');
170
} catch (e) {
0 commit comments