import { test } from "node:test";
import assert from "node:assert/strict";

test("1 + 2 = 3", () => {
  assert.equal(1 + 2, 3);
});