From 1a429a15856a43808fe09fd3c199b8c33d858a90 Mon Sep 17 00:00:00 2001 From: Andrey Avtomonov Date: Mon, 18 May 2026 02:49:39 +0200 Subject: [PATCH] chore(ingest): remove isolated diff allowlist references --- .../context/src/ingest/local-bundle-runtime.test.ts | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/packages/context/src/ingest/local-bundle-runtime.test.ts b/packages/context/src/ingest/local-bundle-runtime.test.ts index 0df1c9e3..0c911842 100644 --- a/packages/context/src/ingest/local-bundle-runtime.test.ts +++ b/packages/context/src/ingest/local-bundle-runtime.test.ts @@ -31,9 +31,8 @@ type RuntimeWithSlValidationDeps = { type RuntimeWithSettingsDeps = { deps: { - settings: { + settings: Record & { sharedWorktreeSourceKeys?: string[]; - isolatedDiffSourceKeys?: string[]; }; }; }; @@ -277,7 +276,15 @@ describe('createLocalBundleIngestRuntime', () => { const settings = (runtime.runner as unknown as RuntimeWithSettingsDeps).deps.settings; expect(settings.sharedWorktreeSourceKeys).toEqual([]); - expect('isolatedDiffSourceKeys' in settings).toBe(false); + expect(Object.keys(settings).sort()).toEqual([ + 'ingestTraceLevel', + 'memoryIngestionModel', + 'probeRowCount', + 'sharedWorktreeSourceKeys', + 'workUnitFailureMode', + 'workUnitMaxConcurrency', + 'workUnitStepBudget', + ]); }); it('accepts a debug LLM request file when constructing the default agent runner', async () => {