Skip to content

Commit 51906cb

Browse files
committed
Update dependencies in integration test runner
1 parent d3da9d3 commit 51906cb

1 file changed

Lines changed: 13 additions & 4 deletions

File tree

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

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,19 @@ async function main() {
8080
if (dirs.includes(TestDir.CliIntegration)) {
8181
console.log('Installing required extensions');
8282
const cliPath = resolveCliPathFromVSCodeExecutablePath(vscodeExecutablePath);
83-
cp.spawnSync(cliPath, ['--install-extension', 'hbenl.vscode-test-explorer'], {
84-
encoding: 'utf-8',
85-
stdio: 'inherit'
86-
});
83+
cp.spawnSync(
84+
cliPath,
85+
[
86+
'--install-extension',
87+
'hbenl.vscode-test-explorer',
88+
'--install-extension',
89+
'ms-vscode.test-adapter-converter',
90+
],
91+
{
92+
encoding: 'utf-8',
93+
stdio: 'inherit',
94+
}
95+
);
8796
}
8897

8998
console.log(`Running integration tests in these directories: ${dirs}`);

0 commit comments

Comments
 (0)