File size: 184 Bytes
381b90d
 
 
 
 
 
 
1
2
3
4
5
6
7
8
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);
});