# Tests Directory This directory contains test scripts and validation utilities for the Skelly project. ## Documentation For complete testing guidelines, conventions, and usage instructions, see: **[docs/TESTING.md](../docs/TESTING.md)** ## Current Files - `TestLogging.gd` - Comprehensive logging system validation script ## Quick Usage ```gdscript # Add as temporary autoload or run in scene var test_script = preload("res://tests/TestLogging.gd").new() add_child(test_script) ``` See [docs/TESTING.md](../docs/TESTING.md) for detailed usage instructions and conventions.