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

Method test_cli_export_async

tests/_cli/test_cli_export.py:339–347  ·  view source on GitHub ↗
(temp_async_marimo_file: str)

Source from the content-addressed store, hash-verified

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(

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