add logging

This commit is contained in:
2025-09-24 11:04:16 +04:00
parent afc808f0d6
commit 994ce07a80
14 changed files with 515 additions and 42 deletions

22
tests/README.md Normal file
View File

@@ -0,0 +1,22 @@
# 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
- `test_logging.gd` - Comprehensive logging system validation script
## Quick Usage
```gdscript
# Add as temporary autoload or run in scene
var test_script = preload("res://tests/test_logging.gd").new()
add_child(test_script)
```
See [docs/TESTING.md](../docs/TESTING.md) for detailed usage instructions and conventions.