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/notToBe.test.js
2023-12-19 16:50:59 +09:00

6 lines
148 B
JavaScript

import assert from "node:assert";
import test from "node:test";
test("2と2の和は5ではない", () => {
assert.notStrictEqual(2 + 2, 5);
});