(err: &anyhow::Error)
| 533 | } |
| 534 | |
| 535 | fn is_quickjs_timeout(err: &anyhow::Error) -> bool { |
| 536 | let text = err.to_string(); |
| 537 | text.contains("interrupted") || text.contains("InternalError") |
| 538 | } |
| 539 | |
| 540 | fn script_record_to_value(record: &ScriptCallRecord) -> serde_json::Value { |
| 541 | serde_json::json!({ |
no test coverage detected