import { describe, expect, test } from "@jest/globals"; import { hello } from "."; describe("module", () => { test("test hello", () => { expect(hello()).toBe("hello"); }); });