Files
ENI-cicd-tp/tests/unit/greeting.test.js
Rock b4d021a548 Add optional name + docs (#25)
* Add optional name

* docs: add README.md with project documentation
2025-12-02 14:09:31 +01:00

8 lines
194 B
JavaScript

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