index.test.js

145 B · javascript · 6 lines

1import { expect, test } from "bun:test";2import { hello } from "./index.js";34test("hello", () => {5  expect(hello()).toBe("Hello, World!");6});