Restrict integration tests tools (#14403)

This commit is contained in:
Tommaso Sciortino
2025-12-02 17:43:06 -08:00
committed by GitHub
parent febc96f006
commit 77f9678744
10 changed files with 63 additions and 19 deletions

View File

@@ -53,7 +53,9 @@ let dir: string;
describe('BOM end-to-end integraion', () => {
beforeAll(async () => {
rig = new TestRig();
await rig.setup('bom-integration');
await rig.setup('bom-integration', {
settings: { tools: { core: ['read_file'] } },
});
dir = rig.testDir!;
});