MCPcopy Index your code
hub / github.com/marimo-team/marimo / test_cli_export_html

Method test_cli_export_html

tests/_cli/test_cli_export.py:134–139  ·  view source on GitHub ↗
(temp_marimo_file: str)

Source from the content-addressed store, hash-verified

132class 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:

Callers

nothing calls this directly

Calls 4

normalize_index_htmlFunction · 0.90
_run_exportFunction · 0.85
_assert_successFunction · 0.85
_normalize_html_pathFunction · 0.85

Tested by

no test coverage detected