Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions packages/test-harness/src/launchVscodeAndRunTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,7 @@ export async function launchVscodeAndRunTests(extensionTestsPath: string) {
// NB: Because of a CI crashing issue the vscode version is pinned.
// https://github.com/cursorless-dev/cursorless/issues/2878

const vscodeVersion = useLegacyVscode
? "1.82.0"
: os.platform() === "win32"
? "stable"
: "1.97.2";
const vscodeVersion = useLegacyVscode ? "1.82.0" : "1.97.2";
const vscodeExecutablePath = await downloadAndUnzipVSCode(vscodeVersion);
const [cli, ...args] =
resolveCliArgsFromVSCodeExecutablePath(vscodeExecutablePath);
Expand Down
Loading