async-graphql/async-graphql-tide/tests/test_utils.rs

8 lines
192 B
Rust
Raw Normal View History

pub async fn find_listen_addr() -> async_std::net::SocketAddr {
2020-04-26 11:53:44 +00:00
async_std::net::TcpListener::bind("localhost:0")
.await
.unwrap()
.local_addr()
.unwrap()
}