ui: trim community streaming surface

This commit is contained in:
a.tolmachev
2026-05-03 18:03:23 +00:00
parent 82b7b7278e
commit 20598ff5dc
11 changed files with 104 additions and 40 deletions
+7
View File
@@ -1065,6 +1065,13 @@ mod tests {
.collect::<Vec<_>>(),
vec!["rest", "graphql", "grpc"]
);
for item in response["items"].as_array().unwrap() {
assert_eq!(item["supports_execution_modes"], json!(["unary"]));
assert_eq!(
item["supports_transport_behaviors"],
json!(["request_response"])
);
}
}
#[tokio::test(flavor = "multi_thread")]