1
0
Fork 0
mirror of https://github.com/kou029w/nodejs-hands-on.git synced 2025-04-06 03:36:23 +00:00
nodejs-hands-on/src/test/getting-started/hello.test.js
2023-12-19 16:50:59 +09:00

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);
});