odin-javascript-exercises/helloWorld/helloWorld.spec.js
2018-08-07 11:25:16 +01:00

7 lines
181 B
JavaScript

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