We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 538792e commit 02e5b4eCopy full SHA for 02e5b4e
extensions/ql-vscode/src/vscode-tests/run-integration-tests.ts
@@ -76,7 +76,6 @@ async function main() {
76
const testDirsString = process.argv[2];
77
const dirs = testDirsString.split(',').map(dir => dir.trim().toLocaleLowerCase());
78
const extensionTestsEnv: Record<string, string> = {};
79
- /*if (dirs.includes(TestDir.CliIntegration))*/ {
80
console.log('Installing required extensions');
81
const cliPath = resolveCliPathFromVSCodeExecutablePath(vscodeExecutablePath);
82
cp.spawnSync(
@@ -92,6 +91,7 @@ async function main() {
92
91
stdio: 'inherit',
93
}
94
);
+ if (dirs.includes(TestDir.CliIntegration)) {
95
extensionTestsEnv.INTEGRATION_TEST_MODE = 'true';
96
97
0 commit comments