(temp_marimo_file: str)
| 132 | class TestExportHTML: |
| 133 | @staticmethod |
| 134 | def test_cli_export_html(temp_marimo_file: str) -> None: |
| 135 | p = _run_export("html", temp_marimo_file) |
| 136 | _assert_success(p) |
| 137 | html = normalize_index_html(p.output) |
| 138 | html = _normalize_html_path(html, temp_marimo_file) |
| 139 | assert '<marimo-code hidden=""></marimo-code>' not in html |
| 140 | |
| 141 | @staticmethod |
| 142 | def test_cli_export_html_no_code(temp_marimo_file: str) -> None: |
nothing calls this directly
no test coverage detected