odin-javascript-exercises/helloWorld/helloWorld.spec.js
2017-09-20 11:02:31 -05:00

7 lines
No EOL
178 B
JavaScript

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