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

7 lines
178 B
JavaScript
Raw Normal View History

2017-08-17 18:47:39 +00:00
var helloWorld = require('./helloWorld');
describe('Hello World', function() {
2017-08-17 21:19:17 +00:00
it('says hello world', function() {
2017-08-17 18:47:39 +00:00
expect(helloWorld()).toEqual('Hello, World!');
});
});