From 7314532ae976809f0a3a72c93f25e9094ae3e28a Mon Sep 17 00:00:00 2001 From: Connor Peet Date: Fri, 13 Oct 2023 14:49:32 -0700 Subject: [PATCH] eng: fix extension test runner on windows (#195600) --- .vscode-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode-test.js b/.vscode-test.js index 9b9a35e5cbd..3741ea0eb44 100644 --- a/.vscode-test.js +++ b/.vscode-test.js @@ -57,7 +57,7 @@ module.exports = defineConfig(extensions.map(extension => { if (!config.platform || config.platform === 'desktop') { config.launchArgs = defaultLaunchArgs; config.useInstallation = { - fromPath: process.env.INTEGRATION_TEST_ELECTRON_PATH || `${__dirname}/scripts/code.${process.platform === 'win32' ? 'cmd' : 'sh'}`, + fromPath: process.env.INTEGRATION_TEST_ELECTRON_PATH || `${__dirname}/scripts/code.${process.platform === 'win32' ? 'bat' : 'sh'}`, }; config.env = { ...config.env,