const { getGreeting } = require("../../src/greeting"); describe("getGreeting", () => { it("returns the hello world message", () => { expect(getGreeting()).toBe("Hello world!"); }); });