13 lines
250 B
Python
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
|