fix: fixed running tests

This commit is contained in:
Shrey Paharia
2025-05-03 18:38:36 +05:30
parent c2865b81f8
commit 7c543cd8c3
2 changed files with 3 additions and 17 deletions

View File

@@ -23,7 +23,7 @@ import updateSubtaskById from './task-manager/update-subtask-by-id.js';
import removeTask from './task-manager/remove-task.js';
import taskExists from './task-manager/task-exists.js';
import isTaskDependentOn from './task-manager/is-task-dependent.js';
import { readComplexityReport } from './utils.js';
// Export task manager functions
export {
parsePRD,
@@ -45,5 +45,6 @@ export {
removeTask,
findTaskById,
taskExists,
isTaskDependentOn
isTaskDependentOn,
readComplexityReport
};

View File

@@ -539,7 +539,6 @@ function detectCamelCaseFlags(args) {
// Export all utility functions and configuration
export {
CONFIG,
LOG_LEVELS,
log,
readJSON,
@@ -556,23 +555,9 @@ export {
detectCamelCaseFlags,
disableSilentMode,
enableSilentMode,
findCycles,
findTaskById,
findTaskInComplexityReport,
formatTaskId,
getTaskManager,
isSilentMode,
log,
LOG_LEVELS,
readComplexityReport,
addComplexityToTask,
readJSON,
sanitizePrompt,
taskExists,
toKebabCase,
truncate,
writeJSON,
resolveEnvVariable,
getTaskManager,
findProjectRoot
};