We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61933c3 commit 6d308f8Copy full SHA for 6d308f8
1 file changed
extensions/ql-vscode/test/vscode-tests/utils/bundled-pack-helpers.ts
@@ -8,6 +8,7 @@ export interface QueryPackFS {
8
fileExists: (name: string) => boolean;
9
fileContents: (name: string) => Buffer;
10
directoryContents: (name: string) => string[];
11
+ allFiles: () => string[];
12
}
13
14
export async function readBundledPack(
@@ -82,5 +83,8 @@ export async function readBundledPack(
82
83
)
84
.map((dir) => dir.substring(name.length + 1));
85
},
86
+ allFiles: (): string[] => {
87
+ return Object.keys(files);
88
+ },
89
};
90
0 commit comments