diff --git a/tests/integration/mcp-server/direct-functions.test.js b/tests/integration/mcp-server/direct-functions.test.js index 252d9c02..8d1e60a5 100644 --- a/tests/integration/mcp-server/direct-functions.test.js +++ b/tests/integration/mcp-server/direct-functions.test.js @@ -133,7 +133,7 @@ jest.mock('../../../scripts/modules/utils.js', () => ({ readComplexityReport: mockReadComplexityReport, CONFIG: { model: 'claude-3-7-sonnet-20250219', - maxTokens: 64000, + maxTokens: 8192, temperature: 0.2, defaultSubtasks: 5 } diff --git a/tests/unit/config-manager.test.js b/tests/unit/config-manager.test.js index e32f3a37..8d4fd803 100644 --- a/tests/unit/config-manager.test.js +++ b/tests/unit/config-manager.test.js @@ -129,7 +129,7 @@ const DEFAULT_CONFIG = { fallback: { provider: 'anthropic', modelId: 'claude-3-5-sonnet', - maxTokens: 64000, + maxTokens: 8192, temperature: 0.2 } }, diff --git a/tests/unit/config-manager.test.mjs b/tests/unit/config-manager.test.mjs index 4a020614..97a944cf 100644 --- a/tests/unit/config-manager.test.mjs +++ b/tests/unit/config-manager.test.mjs @@ -75,7 +75,7 @@ const DEFAULT_CONFIG = { fallback: { provider: 'anthropic', modelId: 'claude-3-5-sonnet', - maxTokens: 64000, + maxTokens: 8192, temperature: 0.2 } }, diff --git a/tests/unit/scripts/modules/task-manager/update-tasks.test.js b/tests/unit/scripts/modules/task-manager/update-tasks.test.js index 37782bb6..3449b239 100644 --- a/tests/unit/scripts/modules/task-manager/update-tasks.test.js +++ b/tests/unit/scripts/modules/task-manager/update-tasks.test.js @@ -123,7 +123,9 @@ describe('updateTasks', () => { details: 'New details 2 based on direction', description: 'Updated description', dependencies: [], - priority: 'medium' + priority: 'medium', + testStrategy: 'Unit test the updated functionality', + subtasks: [] }, { id: 3, @@ -132,7 +134,9 @@ describe('updateTasks', () => { details: 'New details 3 based on direction', description: 'Updated description', dependencies: [], - priority: 'medium' + priority: 'medium', + testStrategy: 'Integration test the updated features', + subtasks: [] } ];