Set default query filter for diff-informed analysis

This commit is contained in:
Chuan-kai Lin
2025-03-27 14:06:40 -07:00
parent da967b1ade
commit 71ab101d38
2 changed files with 22 additions and 0 deletions
+6
View File
@@ -811,9 +811,12 @@ const calculateAugmentationMacro = test.macro({
) => {
const actualAugmentationProperties =
await configUtils.calculateAugmentation(
getCachedCodeQL(),
createFeatures([]),
rawPacksInput,
rawQueriesInput,
languages,
mockLogger,
);
t.deepEqual(actualAugmentationProperties, expectedAugmentationProperties);
},
@@ -907,9 +910,12 @@ const calculateAugmentationErrorMacro = test.macro({
await t.throwsAsync(
() =>
configUtils.calculateAugmentation(
getCachedCodeQL(),
createFeatures([]),
rawPacksInput,
rawQueriesInput,
languages,
mockLogger,
),
{ message: expectedError },
);