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