Added integration testing.

This commit is contained in:
2022-06-03 11:52:18 -04:00
parent 015edc13c1
commit a9b1920c2f
11 changed files with 311 additions and 3 deletions

View File

@ -3,7 +3,7 @@ use tide::{http::StatusCode, Request, Response};
#[async_std::main]
async fn main() -> tide::Result<()> {
let app = app_setup().await;
app.listen("127.0.0.1:8080").await?;
app.listen("127.0.0.1:9090").await?;
Ok(())
}