Fix research

This commit is contained in:
2026-04-15 12:01:28 +02:00
parent 0e8c682ae7
commit 45e1df5a46
37 changed files with 2848 additions and 20 deletions

26
scripts/run_all.sh Executable file
View File

@@ -0,0 +1,26 @@
#!/bin/bash
# Godot Test Runner - All Tests
# Usage: ./scripts/run_all.sh
set -e
GODOT_BIN="${GODOT_BIN:-godot}"
echo "=========================================="
echo "Running All Tests"
echo "=========================================="
echo ""
"$GODOT_BIN" --headless --path . -s res://tests/test_runner.gd
EXIT_CODE=$?
echo ""
echo "=========================================="
if [ $EXIT_CODE -eq 0 ]; then
echo "✓ All tests passed"
else
echo "✗ Some tests failed"
fi
echo "=========================================="
exit $EXIT_CODE