mirror of
https://github.com/langchain-ai/custom-auth.git
synced 2026-07-01 21:34:01 -04:00
11 lines
228 B
Python
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
|