chat-ui-agent-j1-fixture / math.test.mjs
Mike0021's picture
Add live J1 agent verification fixture
381b90d verified
Raw
History Blame
184 Bytes
import assert from "node:assert/strict";
import test from "node:test";
import { add } from "./math.mjs";
test("add combines positive values", () => {
assert.equal(add(2, 2), 4);
});