mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-15 11:43:10 +03:00
9 lines
176 B
JavaScript
9 lines
176 B
JavaScript
import assert from "node:assert/strict";
|
|
import test from "node:test";
|
|
|
|
import { add } from "./math.js";
|
|
|
|
test("add returns the sum", () => {
|
|
assert.equal(add(2, 3), 5);
|
|
});
|