add test-the-application

This commit is contained in:
2023-02-17 15:34:18 +01:00
parent d1726a052a
commit cb9a4dd84f
23 changed files with 30053 additions and 3 deletions

View File

@@ -32,7 +32,7 @@ pub fn graphql_client(conn: &ConnectParams) -> gql_client::Client {
gql_client::Client::new_with_config(ClientConfig {
endpoint: conn.url(),
timeout: None,
timeout: Some(1000),
headers: Some(headers),
proxy: None,
})

View File

@@ -104,8 +104,6 @@ impl Selection {
.build()
.unwrap();
dbg!(&query);
let resp: Option<serde_json::Value> = match basic.block_on(gql_client.query(&query)) {
Ok(r) => r,
Err(e) => eyre::bail!(e),