1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/node-test/equal.test.js

7 lines
132 B
JavaScript
Raw Permalink Normal View History

2022-08-19 23:19:11 +09:00
import { test } from "node:test";
import assert from "node:assert/strict";
test("1 + 2 = 3", () => {
assert.equal(1 + 2, 3);
});