Initial commit

This commit is contained in:
minhtrannhat
2022-11-18 16:08:50 -05:00
commit 3a870ed2c5
40 changed files with 43406 additions and 0 deletions

View File

View File

@@ -0,0 +1,8 @@
from quart import Response
from backend.run import app
async def test_control() -> None:
test_client = app.test_client()
response: Response = await test_client.get("/control/ping")
assert (await response.get_json())["ping"] == "pong"