solve test startup.py

This commit is contained in:
geekan 2023-12-28 15:47:43 +08:00
parent 58c8a38fc3
commit 221a49b7eb

View file

@ -24,9 +24,10 @@ async def test_empty_team():
def test_startup():
args = ["Make a 2048 game"]
args = ["Make a cli snake game"]
result = runner.invoke(app, args)
logger.info(result)
logger.info(result.output)
if __name__ == "__main__":