mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-13 08:15:14 +02:00
chore(ingest): remove isolated diff allowlist references
This commit is contained in:
parent
9335efd421
commit
1a429a1585
1 changed files with 10 additions and 3 deletions
|
|
@ -31,9 +31,8 @@ type RuntimeWithSlValidationDeps = {
|
|||
|
||||
type RuntimeWithSettingsDeps = {
|
||||
deps: {
|
||||
settings: {
|
||||
settings: Record<string, unknown> & {
|
||||
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 () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue