Run the specified test file with debug output.
bash
LOG_LEVEL=debug deno test $ARGUMENTS --allow-env --allow-write --allow-read
If no argument is provided, run all tests:
bash
LOG_LEVEL=debug deno test --allow-env --allow-write --allow-read
Test hierarchy
Tests are in tests/ with the following structure:
code
tests/ ├── 00_fixtures/ # Test fixtures and templates ├── 01_unit/ # Unit tests ├── 02_integration/ # Integration tests └── 03_system/ # System/E2E tests
Test file naming: *_test.ts