Skip to main content

quorum_public/cli/
test.rs

1/// Runs all tests in the `tests` module.
2///
3/// # Example
4/// ```rust
5/// #[tokio::main]
6/// async fn main() {
7///     run().await;
8/// }
9/// ```
10pub async fn run() {
11    crate::tests::run_all_tests().await;
12}