odin-javascript-exercises/01-helloWorld/helloWorld.spec.js
2017-08-17 13:47:39 -05:00

7 lines
No EOL
180 B
JavaScript

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