()
| 1164 | |
| 1165 | #[test] |
| 1166 | fn test_summarize_execution() { |
| 1167 | let input = serde_json::json!({"command": "npm install express"}); |
| 1168 | let summary = summarize_tool_call("bash", NodeKind::Execution, Some(&input), None, None); |
| 1169 | assert_eq!(summary, "npm install express"); |
| 1170 | } |
| 1171 | |
| 1172 | #[test] |
| 1173 | fn test_summarize_error() { |
nothing calls this directly
no test coverage detected