mirror of
https://github.com/langchain-ai/langgraph-fullstack-python.git
synced 2026-07-19 13:54:28 -04:00
First Commit
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1 @@
|
||||
"""Define any integration tests you want in this directory."""
|
||||
@@ -0,0 +1,12 @@
|
||||
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!")]},
|
||||
)
|
||||
@@ -0,0 +1 @@
|
||||
"""Define any unit tests you may want in this directory."""
|
||||
@@ -0,0 +1,3 @@
|
||||
def test_graph() -> None:
|
||||
# Add your own tests here.
|
||||
pass
|
||||
Reference in New Issue
Block a user