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

8 lines
185 B
Rust
Raw Normal View History

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