Spaces:
Running
Running
File size: 230 Bytes
ba2f5d6 |
1 2 3 4 5 6 7 8 9 10 11 |
"""
Test http server
"""
from altair.utils.server import serve, MockServer
def test_serve():
html = "<html><title>Title</title><body><p>Content</p></body></html>"
serve(html, open_browser=False, http_server=MockServer)
|