nodejs-hands-on/templates/basic/toBe.test.js
2023-12-19 16:50:59 +09:00

6 lines
133 B
JavaScript

import assert from "node:assert";
import test from "node:test";
test("2と2の和は4", () => {
assert.strictEqual(2 + 2, 4);
});