Deno
Test Commands
Run tests with Deno's built-in test runner. Filter tests, generate coverage reports, and use assertions from the standard library.
8 commands
Pro Tips
Use '--filter' to run specific tests by name pattern.
Add '--coverage' to generate code coverage reports.
Use '--watch' to re-run tests automatically on file changes.
Common Mistakes
Tests need permissions too - use '--allow-*' flags as needed.
Sanitizers (resource/op) can catch async leaks - don't disable without reason.