We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a16da56 commit 199873dCopy full SHA for 199873d
1 file changed
tests/test_themes.py
@@ -35,6 +35,7 @@ def test_render_themes_templates_python(identifier: str, plugin: MkdocstringsPlu
35
ext_markdown: Pytest fixture (see conftest.py).
36
"""
37
handler = plugin.handlers.get_handler("typescript")
38
- handler._update_env(ext_markdown, plugin.handlers._config)
39
- data = handler.collect(identifier, {})
40
- handler.render(data, {})
+ handler._update_env(ext_markdown, config=plugin.handlers._tool_config)
+ options = handler.get_options({})
+ data = handler.collect(identifier, options)
41
+ handler.render(data, options)
0 commit comments