feat: add simple Express app with /hello endpoint and tests

This commit is contained in:
coaxial
2025-10-23 15:14:23 +02:00
committed by coaxial (aider)
parent 928c1afacd
commit 8bf16b0ac2
5 changed files with 63 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
const { getGreeting } = require('../../src/greeting');
describe('getGreeting', () => {
it('returns the hello world message', () => {
expect(getGreeting()).toBe('Hello world');
});
});