()
| 66 | |
| 67 | |
| 68 | def _make_bridge() -> tuple[AppBridge, FakeToolManager]: |
| 69 | tm = FakeToolManager() |
| 70 | info = AppInfo( |
| 71 | tool_name="test-tool", |
| 72 | resource_uri="ui://test-tool/app.html", |
| 73 | server_name="test-server", |
| 74 | port=9470, |
| 75 | ) |
| 76 | bridge = AppBridge(info, tm) |
| 77 | return bridge, tm |
| 78 | |
| 79 | |
| 80 | # ── Tests ────────────────────────────────────────────────────────────────── |
no test coverage detected