Godot Skill Develop, test, build, and deploy Godot 4.x games. Quick Reference --- Testing Overview | | GdUnit4 | PlayGodot | |---|---------|-----------| | Type | Unit testing | Game automation | | Language | GDScript | Python | | Runs | Inside Godot | External (like Playwright) | | Requires | Addon | Custom Godot fork | | Best for | Unit/component tests | E2E/integration tests | --- GdUnit4 (GDScript Tests) GdUnit4 runs tests written in GDScript directly inside Godot. Project Structure Setup Basic Unit Test Scene Test with Input Simulation Running GdUnit4 Tests GdUnit4 Assertions Scene Runner…