Skip to content

Commit 02e5b4e

Browse files
author
Dave Bartolomeo
committed
Fix installation of dependent extensions
1 parent 538792e commit 02e5b4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ql-vscode/src/vscode-tests/run-integration-tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ async function main() {
7676
const testDirsString = process.argv[2];
7777
const dirs = testDirsString.split(',').map(dir => dir.trim().toLocaleLowerCase());
7878
const extensionTestsEnv: Record<string, string> = {};
79-
/*if (dirs.includes(TestDir.CliIntegration))*/ {
8079
console.log('Installing required extensions');
8180
const cliPath = resolveCliPathFromVSCodeExecutablePath(vscodeExecutablePath);
8281
cp.spawnSync(
@@ -92,6 +91,7 @@ async function main() {
9291
stdio: 'inherit',
9392
}
9493
);
94+
if (dirs.includes(TestDir.CliIntegration)) {
9595
extensionTestsEnv.INTEGRATION_TEST_MODE = 'true';
9696
}
9797

0 commit comments

Comments
 (0)