1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 14:28:04 +00:00
_/node-test/hello.test.js

8 lines
175 B
JavaScript
Raw Normal View History

2022-08-19 23:19:11 +09:00
import { test } from "node:test";
import assert from "node:assert/strict";
import message from "./hello.js";
test("say hello", () => {
assert.equal(message, "hello!");
});