claude-fsd 1.5.23 → 1.5.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/claudefsd-dev +2 -2
- package/package.json +1 -1
package/bin/claudefsd-dev
CHANGED
|
@@ -69,7 +69,7 @@ LOOP_COUNTER=0
|
|
|
69
69
|
|
|
70
70
|
# Failure detection variables
|
|
71
71
|
CONSECUTIVE_FAST_ITERATIONS=0
|
|
72
|
-
MIN_ITERATION_TIME=
|
|
72
|
+
MIN_ITERATION_TIME=60 # 1 minute in seconds
|
|
73
73
|
|
|
74
74
|
# Unit test failure tracking
|
|
75
75
|
UNIT_TEST_FAILURE_INFO=""
|
|
@@ -317,7 +317,7 @@ Be thorough but concise in your verification."
|
|
|
317
317
|
fi
|
|
318
318
|
|
|
319
319
|
# Run unit tests and capture exit code
|
|
320
|
-
if
|
|
320
|
+
if "$WORKING_DIR/unit-test" 2>&1 | tee $UNIT_TEST_LOGFILE; then
|
|
321
321
|
echo -e "\033[32m==================================================================\033[0m"
|
|
322
322
|
echo -e "\033[32m== UNIT TESTS PASSED!\033[0m"
|
|
323
323
|
echo -e "\033[32m== PROJECT COMPLETE - ALL TASKS VERIFIED AND TESTED!\033[0m"
|