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