Skip to content

Commit 91cd3c0

Browse files
committed
Use insiders for CI to workaround crash in vscode
1 parent 435a2c3 commit 91cd3c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/vscodeLauncher.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export async function prepareVSCodeAndExecuteTests(
1515
userDataDir: string,
1616
env: NodeJS.ProcessEnv
1717
): Promise<number> {
18-
let vscodeVersion = 'stable';
18+
let vscodeVersion = 'insiders';
1919
if (process.env.CODE_VERSION) {
2020
console.log(`VSCode version overriden to ${process.env.CODE_VERSION}.`);
2121
vscodeVersion = process.env.CODE_VERSION;
@@ -84,7 +84,7 @@ async function installExtensions(extensionIds: string[], vscodeCli: string, vsco
8484
shell: true,
8585
});
8686
if (result.error || result.status !== 0) {
87-
throw new Error(`Failed to install the runtime extension: ${JSON.stringify(result)}`);
87+
throw new Error(`Failed to install extensions: ${JSON.stringify(result)}`);
8888
}
8989

9090
console.log();

0 commit comments

Comments
 (0)