Files
custom-auth/tests/integration_tests/test_graph.py
T
William Fu-Hinthorn ff38f50a35 First commit
2024-12-16 23:36:35 -08:00

11 lines
228 B
Python

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