create-agent-chat-app
Version:
Create a LangGraph chat app with one command
12 lines (10 loc) • 387 B
text/typescript
import { describe, it, expect } from "@jest/globals";
import { ensureConfiguration } from "../../configuration.js";
describe("Configuration", () => {
it("should initialize configuration from an empty object", () => {
const emptyConfig = {};
const result = ensureConfiguration(emptyConfig);
expect(result).toBeDefined();
expect(typeof result).toBe("object");
});
});