mirror of
https://github.com/langchain-ai/langgraph-fullstack-python.git
synced 2026-07-22 01:35:21 -04:00
13 lines
257 B
Python
13 lines
257 B
Python
import pytest
|
|
|
|
from react_agent import graph
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
@pytest.mark.langsmith
|
|
async def test_react_agent_simple_passthrough() -> None:
|
|
# Add your own tests here.
|
|
await graph.ainvoke(
|
|
{"messages": [("user", "Hi there!")]},
|
|
)
|