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