We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f50aff commit 9a5f2bfCopy full SHA for 9a5f2bf
packages/python/plotly/plotly/tests/test_io/test_html.py
@@ -38,3 +38,9 @@ def fig1(request):
38
39
def test_versioned_cdn_included(fig1):
40
assert plotly_cdn_url() in pio.to_html(fig1, include_plotlyjs="cdn")
41
+
42
43
+def test_html_deterministic(fig1):
44
+ assert pio.to_html(fig1, include_plotlyjs="cdn") == pio.to_html(
45
+ fig1, include_plotlyjs="cdn"
46
+ )
0 commit comments