Skip to content
Prev Previous commit
Next Next commit
微調整
  • Loading branch information
makotan committed Aug 27, 2025
commit e6d33eb65e1914f676500a5d7abda25d75061550
3 changes: 2 additions & 1 deletion commands/tdd-cycle-full.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,10 @@ run_tdd_cycle() {
fi

echo -e "${GREEN}✅ VERIFY COMPLETE フェーズ完了${NC}"
echo -e "${verify_result}

# 結果の判定
if echo "$verify_result" | grep -E "(品質基準を満たしています|実装完了|検証完了)" > /dev/null; then
if echo "$verify_result" | grep -E "(完全性検証: 合格)" > /dev/null; then
echo -e "${GREEN}🎉 TDDサイクル完了${NC}: $test_case のTDDサイクルが正常に完了しました"
return 0
elif echo "$verify_result" | grep -E "(未実装|品質基準に満たない|追加実装が必要)" > /dev/null; then
Expand Down