Following along on the godot tutorial @ https://docs.godotengine.org/en/stable/getting_started/step_by_step/your_first_game.html
Other Links:
The game can be run via the godot editor or command line:
alias godot="/Applications/Godot.app/Contents/MacOS/Godot"
# in project root
godot
Unit tests in GUT
alias godot="/Applications/Godot.app/Contents/MacOS/Godot"
alias gut="godot -d -s --path $PWD addons/gut/gut_cmdln.gd"
# in project root
gut
# run only one test
gut -gselect=test_hud.gd
# for orphan debugging
gut -gselect=test_main.gd --verbose
-d
: run in debug mode-s
: run a script--path $PWD
: tells Godot to treat the current directory as project root