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

7 lines
165 B
Rust
Raw Normal View History

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