(temp_async_marimo_file: str)
| 337 | |
| 338 | @staticmethod |
| 339 | def test_cli_export_async(temp_async_marimo_file: str) -> None: |
| 340 | p = _run_export("html", temp_async_marimo_file) |
| 341 | _assert_success(p) |
| 342 | stderr = p.stderr or "" |
| 343 | assert "ValueError" not in stderr |
| 344 | assert "Traceback" not in stderr |
| 345 | html = normalize_index_html(p.output) |
| 346 | html = _normalize_html_path(html, temp_async_marimo_file) |
| 347 | assert '<marimo-code hidden=""></marimo-code>' not in html |
| 348 | |
| 349 | @staticmethod |
| 350 | def test_export_html_with_errors( |
nothing calls this directly
no test coverage detected