Files
Moltbot/src/cli/program.nodes-test-helpers.test.ts
2026-02-22 07:44:56 +00:00

13 lines
392 B
TypeScript

import { describe, expect, it } from "vitest";
import { IOS_NODE, createIosNodeListResponse } from "./program.nodes-test-helpers.js";
describe("program.nodes-test-helpers", () => {
it("builds a node.list response with iOS node fixture", () => {
const response = createIosNodeListResponse(1234);
expect(response).toEqual({
ts: 1234,
nodes: [IOS_NODE],
});
});
});