Skip to content

Commit

Permalink
Add more graphql integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tpoliaw committed Dec 18, 2024
1 parent 36caec3 commit 5a8a510
Show file tree
Hide file tree
Showing 4 changed files with 340 additions and 66 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,5 @@ assert_matches = "1.5.0"
async-std = { version = "1.13.0", features = ["attributes"], default-features = false }
httpmock = { version = "0.7.0", default-features = false }
rstest = "0.23.0"
serde_json = "1.0.133"
tempfile = "3.14.0"
3 changes: 2 additions & 1 deletion src/db_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ use std::fmt;
use std::marker::PhantomData;
use std::path::Path;

use error::{ConfigurationError, NewConfigurationError};
pub use error::ConfigurationError;
use error::NewConfigurationError;
use sqlx::sqlite::{SqliteConnectOptions, SqliteRow};
use sqlx::{query_as, FromRow, QueryBuilder, Row, Sqlite, SqlitePool};
use tracing::{info, instrument, trace};
Expand Down
Loading

0 comments on commit 5a8a510

Please sign in to comment.