Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/test_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def test_on_page_markdown_with_exception_in_code_execution(self, mock_page: Magi
result = plugin.on_page_markdown(markdown, page=mock_page, config=MagicMock(), files=None)
result = plugin.on_post_page(result, page=mock_page, config=MagicMock())

assert "This cell raised an exception" in result
assert "data-mime='\"application/vnd.marimo+error\"'" in result
assert "Test error" in result

def test_process_marimo_file_directives(self, plugin: MarimoPlugin, tmp_path: Path) -> None:
Expand Down
Loading