Files
graphtest/tests/integration_tests/test_graph.py
2025-05-14 06:53:07 -07:00

13 lines
250 B
Python

import pytest
from agent import graph
pytestmark = pytest.mark.anyio
@pytest.mark.langsmith
async def test_agent_simple_passthrough() -> None:
inputs = {"changeme": "some_val"}
res = await graph.ainvoke(inputs)
assert res is not None