const { hello } = require('../src/hello'); test('hello("World") returns "Hello, world!"', () => { expect(hello('World')).toBe('Hello, world!'); });