| name | test |
| description | Run the Rust test suite for the starbunk-rs monorepo or a specific crate/module |
Test Runner
Run tests for the project.
Arguments
$ARGUMENTS - Optional: specific package or test filter (e.g. --lib, middleware) or leave blank for all.
Instructions
-
If no argument is provided, run the full test suite:
cargo test --all
-
If an argument is provided, run tests matching the filter:
cargo test <filter>
-
Report the test results clearly, highlighting any failures.
-
If tests fail, analyze the output and suggest fixes if the errors are straightforward.