We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f6862a commit 2056c7bCopy full SHA for 2056c7b
1 file changed
extensions/ql-vscode/src/vscode-tests/no-workspace/query-results.test.ts
@@ -160,18 +160,20 @@ describe('query-results', () => {
160
describe('interpretResultsSarif', () => {
161
let mockServer: CodeQLCliServer;
162
let spy: Sinon.SinonExpectation;
163
+ let interpretedResultsPath: string;
164
const metadata = {
165
kind: 'my-kind',
166
id: 'my-id' as string | undefined,
167
scored: undefined
168
};
169
const resultsPath = '123';
- const interpretedResultsPath = path.join(tmpDir.name, 'interpreted.json');
170
+
171
const sourceInfo = {};
172
173
beforeEach(() => {
174
spy = sandbox.mock();
175
spy.returns({ a: '1234' });
176
+ interpretedResultsPath = path.join(tmpDir.name, 'interpreted.json');
177
178
mockServer = {
179
interpretBqrsSarif: spy
0 commit comments