BattleWords / tests /test_apptest.py
Surn's picture
Add new apptest for streamlit
dce247e
raw
history blame contribute delete
194 Bytes
# file: D:/Projects/Battlewords/tests/test_apptest.py
from streamlit.testing.v1 import AppTest
def test_app_runs():
at = AppTest.from_file("app.py")
at.run()
assert not at.exception