1 parent 856b880 commit ebf992cCopy full SHA for ebf992c
1 file changed
extensions/ql-vscode/test/vscode-tests/cli-integration/run-cli.test.ts
@@ -138,7 +138,7 @@ describe("Use cli", () => {
138
.spyOn(authentication, "getSession")
139
.mockResolvedValue(undefined);
140
141
- await cli.packDownload(["codeql/tutorial"]);
+ await cli.packDownload(["codeql/tutorial@0.0.11"]);
142
expect(getSession).toHaveBeenCalledTimes(1);
143
expect(getSession).toHaveBeenCalledWith(
144
"github",
@@ -165,7 +165,7 @@ describe("Use cli", () => {
165
scopes: ["read:packages"],
166
});
167
168
169
expect(getSession).toHaveBeenCalledTimes(2);
170
171
0 commit comments