We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c3fbb8 commit 1acf312Copy full SHA for 1acf312
1 file changed
extensions/ql-vscode/test/vscode-tests/no-workspace/contextual/astBuilder.test.ts
@@ -53,10 +53,18 @@ describe("AstBuilder", () => {
53
const roots = await astBuilder.getRoots();
54
55
const options = { entities: ["id", "url", "string"] };
56
- expect(mockCli.bqrsDecode).toBeCalledWith("/a/b/c", "nodes", options);
57
- expect(mockCli.bqrsDecode).toBeCalledWith("/a/b/c", "edges", options);
58
expect(mockCli.bqrsDecode).toBeCalledWith(
59
- "/a/b/c",
+ "/a/b/c/results.bqrs",
+ "nodes",
+ options,
60
+ );
61
+ expect(mockCli.bqrsDecode).toBeCalledWith(
62
63
+ "edges",
64
65
66
67
68
"graphProperties",
69
options,
70
);
0 commit comments