create-agent-chat-app
Version:
Create a LangGraph chat app with one command
12 lines (9 loc) • 380 B
text/typescript
import { describe, it, expect } from "@jest/globals";
import { graph } from "../../graph.js";
describe("Memory Graph", () => {
it("should initialize and compile the graph", () => {
expect(graph).toBeDefined();
expect(graph.name).toBe("MemoryAgent");
});
// TODO: Add more test cases for individual nodes, routing logic, tool integration, and output validation
});