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