Files
ENI-cicd-tp/tests/unit/greeting.test.js

8 lines
193 B
JavaScript

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