We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b40e356 commit bce6a82Copy full SHA for bce6a82
tests/index.rs
@@ -528,6 +528,12 @@ async fn privileged_paths_are_not_accessible() {
528
#[actix_web::test]
529
/// https://github.com/sqlpage/SQLPage/issues/738
530
async fn test_json_columns() {
531
+ let app_data = make_app_data().await;
532
+ if !matches!(app_data.db.to_string().to_lowercase().as_str(), "postgres" | "sqlite") {
533
+ log::info!("Skipping test_json_columns on database {}", app_data.db);
534
+ return;
535
+ }
536
+
537
let resp_result = req_path("/tests/json_columns.sql").await;
538
let resp = resp_result.expect("Failed to request /tests/json_columns.sql");
539
assert_eq!(resp.status(), http::StatusCode::OK);
0 commit comments