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

6 lines
137 B
JavaScript
Raw Normal View History

const helloWorld = require('./helloWorld');
2017-08-17 11:47:39 -07:00
test('says "Hello, World!"', function() {
expect(helloWorld()).toBe("Hello, World!");
});