UNPKG

create-agent-chat-app

Version:
12 lines (9 loc) 380 B
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 });