trygithubactions / tests /test_final_story.py
subashpoudel's picture
Fixed test cases
4d20a7d
raw
history blame
232 Bytes
from fastapi.testclient import TestClient
from api.main import app
client = TestClient(app)
def test_final_story_generation():
response = client.post("/api/generate-final-story", json={})
assert response.status_code == 200