File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
packages/test-harness/src Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -35,11 +35,12 @@ export async function launchVscodeAndRunTests(extensionTestsPath: string) {
3535 // NB: We include the exact version here instead of in `test.yml` so that
3636 // we don't have to update the branch protection rules every time we bump
3737 // the legacy VSCode version.
38- const vscodeVersion = useLegacyVscode
39- ? "1.82.0"
40- : os . platform ( ) === "win32"
41- ? "stable"
42- : "1.97.2" ;
38+ const vscodeVersion = useLegacyVscode ? "1.82.0" : "stable" ;
39+ // const vscodeVersion = useLegacyVscode
40+ // ? "1.82.0"
41+ // : os.platform() === "win32"
42+ // ? "stable"
43+ // : "1.97.2";
4344 const vscodeExecutablePath = await downloadAndUnzipVSCode ( vscodeVersion ) ;
4445 const [ cli , ...args ] =
4546 resolveCliArgsFromVSCodeExecutablePath ( vscodeExecutablePath ) ;
You can’t perform that action at this time.
0 commit comments