15 lines
276 B
Rust
15 lines
276 B
Rust
|
#[test]
|
||
|
fn end_to_end () -> anyhow::Result <()> {
|
||
|
let rt = tokio::runtime::Runtime::new ()?;
|
||
|
rt.block_on (end_to_end_async ())?;
|
||
|
Ok (())
|
||
|
}
|
||
|
|
||
|
async fn end_to_end_async () -> anyhow::Result <()> {
|
||
|
|
||
|
|
||
|
// let task_relay = crate::executable_relay_server::main ();
|
||
|
|
||
|
Ok (())
|
||
|
}
|