fixed jspg_schemas returning a drop now

This commit is contained in:
2026-03-16 00:19:32 -04:00
parent 6444b300b3
commit 3bec6a6102
2 changed files with 16 additions and 11 deletions

View File

@ -54,13 +54,16 @@ fn test_library_api() {
assert_eq!(
schemas_drop.0,
json!({
"test_schema": {
"$id": "test_schema",
"type": "object",
"properties": {
"name": { "type": "string" }
},
"required": ["name"]
"type": "drop",
"response": {
"test_schema": {
"$id": "test_schema",
"type": "object",
"properties": {
"name": { "type": "string" }
},
"required": ["name"]
}
}
})
);