mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 14:28:04 +00:00
8 lines
175 B
JavaScript
8 lines
175 B
JavaScript
|
import { test } from "node:test";
|
||
|
import assert from "node:assert/strict";
|
||
|
import message from "./hello.js";
|
||
|
|
||
|
test("say hello", () => {
|
||
|
assert.equal(message, "hello!");
|
||
|
});
|