From 63310d91d3c2277ee6f6e4662a9f10da52e169dd Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Thu, 4 Feb 2021 20:48:25 +0100 Subject: [PATCH] remove install extension --- test/automation/src/playwrightDriver.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/test/automation/src/playwrightDriver.ts b/test/automation/src/playwrightDriver.ts index f2371419b48..03840dcb547 100644 --- a/test/automation/src/playwrightDriver.ts +++ b/test/automation/src/playwrightDriver.ts @@ -104,7 +104,6 @@ export async function launch(userDataDir: string, _workspacePath: string, codeSe const args = ['--browser', 'none', '--driver', 'web', '--extensions-dir', extPath]; let serverLocation: string | undefined; if (codeServerPath) { - args.push(...['--install-builtin-extension', 'github.vscode-pull-request-github', '--start-server']); serverLocation = join(codeServerPath, `server.${process.platform === 'win32' ? 'cmd' : 'sh'}`); console.log(`Starting built server from '${serverLocation}'`); } else {