File tree 1 file changed +6
-5
lines changed
packages/test-harness/src
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) {
35
35
// NB: We include the exact version here instead of in `test.yml` so that
36
36
// we don't have to update the branch protection rules every time we bump
37
37
// 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";
43
44
const vscodeExecutablePath = await downloadAndUnzipVSCode ( vscodeVersion ) ;
44
45
const [ cli , ...args ] =
45
46
resolveCliArgsFromVSCodeExecutablePath ( vscodeExecutablePath ) ;
You can’t perform that action at this time.
0 commit comments