(value: &serde_json::Value)
| 66 | } |
| 67 | |
| 68 | fn extract_text(value: &serde_json::Value) -> &str { |
| 69 | value["content"][0]["text"] |
| 70 | .as_str() |
| 71 | .unwrap_or("<missing text>") |
| 72 | } |
| 73 | |
| 74 | #[tokio::test] |
| 75 | async fn test_discover_project_root_from_subdir() { |
no test coverage detected