arxify's picture
Upload folder using huggingface_hub
ba2f5d6
raw
history blame contribute delete
230 Bytes
"""
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)