After you’ve prototyped your LangGraph agent, a natural next step is to add tests. This guide covers some useful patterns you can use when writing unit tests.Note that this guide is LangGraph-specific and covers scenarios around graphs with custom structures - if you are just getting started, check out Test that uses LangChain’s built-in create_agent instead.
Because many LangGraph agents depend on state, a useful pattern is to create your graph before each test where you use it, then compile it within tests with a new checkpointer instance.The below example shows how this works with a simple, linear graph that progresses through node1 and node2. Each node updates the single state key my_key:
Compiled LangGraph agents expose references to each individual node as graph.nodes. You can take advantage of this to test individual nodes within your agent. Note that this will bypass any checkpointers passed when compiling the graph:
import pytestfrom typing_extensions import TypedDictfrom langgraph.graph import StateGraph, START, ENDfrom langgraph.checkpoint.memory import MemorySaverdef create_graph() -> StateGraph: class MyState(TypedDict): my_key: str graph = StateGraph(MyState) graph.add_node("node1", lambda state: {"my_key": "hello from node1"}) graph.add_node("node2", lambda state: {"my_key": "hello from node2"}) graph.add_edge(START, "node1") graph.add_edge("node1", "node2") graph.add_edge("node2", END) return graphdef test_individual_node_execution() -> None: # Will be ignored in this example checkpointer = MemorySaver() graph = create_graph() compiled_graph = graph.compile(checkpointer=checkpointer) # Only invoke node 1 result = compiled_graph.nodes["node1"].invoke( {"my_key": "initial_value"}, ) assert result["my_key"] == "hello from node1"
For agents made up of larger graphs, you may wish to test partial execution paths within your agent rather than the entire flow end-to-end. In some cases, it may make semantic sense to restructure these sections as subgraphs, which you can invoke in isolation as normal.However, if you do not wish to make changes to your agent graph’s overall structure, you can use LangGraph’s persistence mechanisms to simulate a state where your agent is paused right before the beginning of the desired section, and will pause again at the end of the desired section. The steps are as follows:
Compile your agent with a checkpointer (the in-memory checkpointer InMemorySaver will suffice for testing).
Call your agent’s update_state method with an as_node parameter set to the name of the node before the one you want to start your test.
Invoke your agent with the same thread_id you used to update the state and an interrupt_after parameter set to the name of the node you want to stop at.
Here’s an example that executes only the second and third nodes in a linear graph:
import pytestfrom typing_extensions import TypedDictfrom langgraph.graph import StateGraph, START, ENDfrom langgraph.checkpoint.memory import MemorySaverdef create_graph() -> StateGraph: class MyState(TypedDict): my_key: str graph = StateGraph(MyState) graph.add_node("node1", lambda state: {"my_key": "hello from node1"}) graph.add_node("node2", lambda state: {"my_key": "hello from node2"}) graph.add_node("node3", lambda state: {"my_key": "hello from node3"}) graph.add_node("node4", lambda state: {"my_key": "hello from node4"}) graph.add_edge(START, "node1") graph.add_edge("node1", "node2") graph.add_edge("node2", "node3") graph.add_edge("node3", "node4") graph.add_edge("node4", END) return graphdef test_partial_execution_from_node2_to_node3() -> None: checkpointer = MemorySaver() graph = create_graph() compiled_graph = graph.compile(checkpointer=checkpointer) compiled_graph.update_state( config={ "configurable": { "thread_id": "1" } }, # The state passed into node 2 - simulating the state at # the end of node 1 values={"my_key": "initial_value"}, # Update saved state as if it came from node 1 # Execution will resume at node 2 as_node="node1", ) result = compiled_graph.invoke( # Resume execution by passing None None, config={"configurable": {"thread_id": "1"}}, # Stop after node 3 so that node 4 doesn't run interrupt_after="node3", ) assert result["my_key"] == "hello from node3"
Connect these docs to Claude, VSCode, and more via MCP for real-time answers.