odin-default-js-exercises/helloWorld/helloWorld.spec.js

8 lines
181 B
JavaScript

const helloWorld = require('./helloWorld');
describe('Hello World', function() {
it('says hello world', function() {
expect(helloWorld()).toEqual('Hello, World!');
});
});