mirror of
https://github.com/kou029w/nodejs-hands-on.git
synced 2025-04-06 03:36:23 +00:00
7 lines
159 B
JavaScript
7 lines
159 B
JavaScript
// hello.test.js
|
|
import assert from "node:assert";
|
|
import test from "node:test";
|
|
|
|
test("1と2の合計は3です", () => {
|
|
assert.strictEqual(1 + 2, 3);
|
|
});
|