Skip to content

Commit 9e26c29

Browse files
author
Dave Bartolomeo
committed
Fix tests for older CLIs
1 parent 705a797 commit 9e26c29

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

extensions/ql-vscode/test/vscode-tests/cli-integration/debugger/debugger.test.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,10 @@ describeWithCodeQL()("Debugger", () => {
179179
});
180180

181181
it("should pass additionalArgs through to query server", async () => {
182+
if (!(await cli.cliConstraints.supportsNewQueryServerForTests())) {
183+
// Only works with the new query server.
184+
return;
185+
}
182186
await withDebugController(appCommands, async (controller) => {
183187
await controller.startDebugging(
184188
{

0 commit comments

Comments
 (0)