mrlyprod/pkgs/js/mrlyjs/index.test.jsRaw · GitHub index.test.js145 B · javascript · 6 lines 1import { expect, test } from "bun:test";2import { hello } from "./index.js";34test("hello", () => {5 expect(hello()).toBe("Hello, World!");6});