From dfb158470382a16c7bc556ab8c017ecdf1a40c66 Mon Sep 17 00:00:00 2001 From: Dmitry Gozman Date: Fri, 8 Apr 2022 09:37:51 -0700 Subject: [PATCH] chore: remove MEMUSAGE workaround on Windows (#13408) This was introduced in #7500 to fight `ERROR: The process "4436" not found.` messages when killing a process that did already exit. Since then, we no longer inherit stdout/stderr, so the error message should not appear anymore. --- packages/playwright-core/src/utils/processLauncher.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/playwright-core/src/utils/processLauncher.ts b/packages/playwright-core/src/utils/processLauncher.ts index 0802f352af..38bc665857 100644 --- a/packages/playwright-core/src/utils/processLauncher.ts +++ b/packages/playwright-core/src/utils/processLauncher.ts @@ -170,8 +170,8 @@ export async function launchProcess(options: LaunchProcessOptions): Promise