diff --git a/packages/e2e-test/src/commands/run.ts b/packages/e2e-test/src/commands/run.ts index e5399c13f9..1ea51a9265 100644 --- a/packages/e2e-test/src/commands/run.ts +++ b/packages/e2e-test/src/commands/run.ts @@ -383,7 +383,6 @@ async function testAppServe(pluginName: string, appDir: string) { } } finally { // Kill entire process group, otherwise we'll end up with hanging serve processes - if (browser) await browser.close(); await new Promise((res, rej) => killTree(startApp.pid, err => (err ? rej(err) : res())), );