odin-js-fundamentals-part-4/01_helloWorld/solution/helloWorld-solution.spec.js

8 lines
198 B
JavaScript

const helloWorld = require('./helloWorld-solution');
describe('Hello World', function () {
test('says "Hello, World!"', function () {
expect(helloWorld()).toEqual('Hello, World!');
});
});