mirror of
https://github.com/kou029w/nodejs-hands-on.git
synced 2025-01-19 00:17:59 +00:00
6 lines
133 B
JavaScript
6 lines
133 B
JavaScript
import assert from "node:assert";
|
|
import test from "node:test";
|
|
|
|
test("2と2の和は4", () => {
|
|
assert.strictEqual(2 + 2, 4);
|
|
});
|