Skip to content

Commit 3c62bca

Browse files
Use stable version
1 parent 3e4400d commit 3c62bca

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

Diff for: packages/test-harness/src/launchVscodeAndRunTests.ts

+6-5
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)