Skip to content

Commit 091216f

Browse files
Update error message
1 parent 1326c0a commit 091216f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

extensions/ql-vscode/test/vscode-tests/global.helper.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ export async function getActivatedExtension(): Promise<CodeQLExtensionInterface>
2929
.getExtension<CodeQLExtensionInterface | undefined>("GitHub.vscode-codeql")
3030
?.activate();
3131
if (extension === undefined) {
32-
throw new Error("Unable to active CodeQL extension");
32+
throw new Error(
33+
"Unable to active CodeQL extension. Make sure cli is downloaded and installed properly.",
34+
);
3335
}
3436
return extension;
3537
}

0 commit comments

Comments
 (0)