Skip to content

Commit d41c325

Browse files
Use latest stable vscode for windows CI tests
1 parent e5e9929 commit d41c325

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

packages/test-harness/src/launchVscodeAndRunTests.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,7 @@ export async function launchVscodeAndRunTests(extensionTestsPath: string) {
3636
// we don't have to update the branch protection rules every time we bump
3737
// the legacy VSCode version.
3838

39-
// NB: Because of a CI crashing issue the vscode version is pinned.
40-
// https://github.com/cursorless-dev/cursorless/issues/2878
41-
42-
const vscodeVersion = useLegacyVscode
43-
? "1.82.0"
44-
: os.platform() === "win32"
45-
? "stable"
46-
: "1.97.2";
39+
const vscodeVersion = useLegacyVscode ? "1.82.0" : "stable";
4740
const vscodeExecutablePath = await downloadAndUnzipVSCode(vscodeVersion);
4841
const [cli, ...args] =
4942
resolveCliArgsFromVSCodeExecutablePath(vscodeExecutablePath);

0 commit comments

Comments
 (0)