()
| 2800 | |
| 2801 | #[tokio::test(flavor = "multi_thread")] |
| 2802 | async fn test_session_tool_timeout_configured() { |
| 2803 | let agent = Agent::from_config(test_config()).await.unwrap(); |
| 2804 | let opts = SessionOptions::new().with_tool_timeout(5000); |
| 2805 | let session = agent.session("/tmp/test-ws-timeout", Some(opts)).unwrap(); |
| 2806 | assert!(!session.id().is_empty()); |
| 2807 | } |
| 2808 | |
| 2809 | // ======================================================================== |
| 2810 | // Queue fallback tests |
nothing calls this directly
no test coverage detected