List available tests. Args: mode: Test mode - "edit" or "play" Returns: Dictionary with available tests
(self, mode: str = "edit")
| 49 | return self._conn.send_request("tests", params) |
| 50 | |
| 51 | def list(self, mode: str = "edit") -> dict[str, Any]: |
| 52 | """List available tests. |
| 53 | |
| 54 | Args: |
| 55 | mode: Test mode - "edit" or "play" |
| 56 | |
| 57 | Returns: |
| 58 | Dictionary with available tests |
| 59 | """ |
| 60 | return self._conn.send_request("tests", {"action": "list", "mode": mode}) |
| 61 | |
| 62 | def status(self) -> dict[str, Any]: |
| 63 | """Get status of running tests. |
nothing calls this directly
no test coverage detected