Skip to content

Commit 82acdc6

Browse files
committed
test(integration): disable the install of C++ ext
1 parent 19b71e1 commit 82acdc6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test/integration/runTest.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,18 @@ async function main() {
3030
const extensionDevelopmentPath = path.resolve(__dirname, '../../../');
3131
const workspacePath = path.resolve(__dirname, '../../../test/fortran/');
3232
// Install the C++ extension
33-
const vscodeExecutablePath = await downloadAndUnzipVSCode('stable');
34-
const [cli, ...args] = resolveCliArgsFromVSCodeExecutablePath(vscodeExecutablePath);
35-
spawnSync(cli, [...args, '--install-extension', 'ms-vscode.cpptools'], {
36-
encoding: 'utf-8',
37-
stdio: 'inherit',
38-
});
33+
// const vscodeExecutablePath = await downloadAndUnzipVSCode('stable');
34+
// const [cli, ...args] = resolveCliArgsFromVSCodeExecutablePath(vscodeExecutablePath);
35+
// spawnSync(cli, [...args, '--install-extension', 'ms-vscode.cpptools'], {
36+
// encoding: 'utf-8',
37+
// stdio: 'inherit',
38+
// });
3939

4040
// The path to the extension test runner script
4141
// Passed to --extensionTestsPath
4242
const extensionTestsPath = path.resolve(__dirname, './index');
4343

44-
const launchArgs = [workspacePath];
44+
const launchArgs = [workspacePath, '--disable-extensions'];
4545
// Download VS Code, unzip it and run the integration test
4646
await runTests({
4747
launchArgs: launchArgs,

0 commit comments

Comments
 (0)