1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-30 22:08:02 +00:00
_/node-test/equal.test.js
2022-08-19 23:19:48 +09:00

6 lines
132 B
JavaScript

import { test } from "node:test";
import assert from "node:assert/strict";
test("1 + 2 = 3", () => {
assert.equal(1 + 2, 3);
});