Skip to content

Commit 5a8a510

Browse files
committed
Add more graphql integration tests
1 parent 36caec3 commit 5a8a510

File tree

4 files changed

+340
-66
lines changed

4 files changed

+340
-66
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,5 @@ assert_matches = "1.5.0"
3434
async-std = { version = "1.13.0", features = ["attributes"], default-features = false }
3535
httpmock = { version = "0.7.0", default-features = false }
3636
rstest = "0.23.0"
37+
serde_json = "1.0.133"
3738
tempfile = "3.14.0"

src/db_service.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ use std::fmt;
1616
use std::marker::PhantomData;
1717
use std::path::Path;
1818

19-
use error::{ConfigurationError, NewConfigurationError};
19+
pub use error::ConfigurationError;
20+
use error::NewConfigurationError;
2021
use sqlx::sqlite::{SqliteConnectOptions, SqliteRow};
2122
use sqlx::{query_as, FromRow, QueryBuilder, Row, Sqlite, SqlitePool};
2223
use tracing::{info, instrument, trace};

0 commit comments

Comments
 (0)