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

7 lines
178 B
JavaScript

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