mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 06:18:07 +00:00
7 lines
132 B
JavaScript
7 lines
132 B
JavaScript
|
import { test } from "node:test";
|
||
|
import assert from "node:assert/strict";
|
||
|
|
||
|
test("1 + 2 = 3", () => {
|
||
|
assert.equal(1 + 2, 3);
|
||
|
});
|