Files
graphtest/tests/integration_tests/test_graph.py
William Fu-Hinthorn 6627a2a05f Simplify the boilerplate
Signed-off-by: William Fu-Hinthorn <13333726+hinthornw@users.noreply.github.com>
2025-05-08 13:48:44 -07:00

10 lines
198 B
Python

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