mirror of
https://github.com/kou029w/_.git
synced 2025-01-30 22:08:02 +00:00
7 lines
175 B
JavaScript
7 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!");
|
|
});
|