diff options
Diffstat (limited to 'packages/server/src/config/config.test.ts')
| -rw-r--r-- | packages/server/src/config/config.test.ts | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/packages/server/src/config/config.test.ts b/packages/server/src/config/config.test.ts index ade27a87..3fa8b6de 100644 --- a/packages/server/src/config/config.test.ts +++ b/packages/server/src/config/config.test.ts @@ -56,6 +56,7 @@ describe('Server Config (config.ts)', () => { DEBUG_MODE, QUESTION, FULL_CONTEXT, + undefined, // coreTools undefined, // toolDiscoveryCommand undefined, // toolCallCommand undefined, // mcpServerCommand @@ -85,6 +86,7 @@ describe('Server Config (config.ts)', () => { undefined, undefined, undefined, + undefined, USER_AGENT, // No userMemory argument ); @@ -101,10 +103,11 @@ describe('Server Config (config.ts)', () => { DEBUG_MODE, QUESTION, FULL_CONTEXT, - undefined, - undefined, - undefined, - undefined, + undefined, // coreTools + undefined, // toolDiscoveryCommand + undefined, // toolCallCommand + undefined, // mcpServerCommand + undefined, // mcpServers USER_AGENT, USER_MEMORY, // Pass memory here ); @@ -125,10 +128,11 @@ describe('Server Config (config.ts)', () => { DEBUG_MODE, QUESTION, FULL_CONTEXT, - undefined, - undefined, - undefined, - undefined, + undefined, // coreTools + undefined, // toolDiscoveryCommand + undefined, // toolCallCommand + undefined, // mcpServerCommand + undefined, // mcpServers USER_AGENT, // No userMemory argument ); @@ -148,10 +152,11 @@ describe('Server Config (config.ts)', () => { DEBUG_MODE, QUESTION, FULL_CONTEXT, - undefined, - undefined, - undefined, - undefined, + undefined, // coreTools + undefined, // toolDiscoveryCommand + undefined, // toolCallCommand + undefined, // mcpServerCommand + undefined, // mcpServers USER_AGENT, USER_MEMORY, ); |
