nodejs-hands-on/templates/basic/notToBe.test.js

7 lines
148 B
JavaScript
Raw Normal View History

2023-12-19 16:50:59 +09:00
import assert from "node:assert";
import test from "node:test";
test("2と2の和は5ではない", () => {
assert.notStrictEqual(2 + 2, 5);
});