| 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); | |
| }); | |
| 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); | |
| }); | |