fix: restore repo-wide gate after exec safe-bin refactor

This commit is contained in:
Peter Steinberger
2026-03-22 17:27:30 +00:00
parent 5863ce1f78
commit 405d808409
5 changed files with 12 additions and 14 deletions

View File

@@ -718,10 +718,9 @@ description: test skill
await Promise.all(
cases.map(async (testCase) => {
const res = await audit(testCase.cfg);
expect(
hasFinding(res, "tools.exec.safe_bins_broad_behavior", "warn"),
testCase.name,
).toBe(testCase.expected);
expect(hasFinding(res, "tools.exec.safe_bins_broad_behavior", "warn"), testCase.name).toBe(
testCase.expected,
);
}),
);
});