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

8 lines
181 B
JavaScript
Raw Normal View History

2018-08-07 11:23:28 +01:00
const helloWorld = require('./helloWorld');
2017-08-17 13:47:39 -05:00
describe('Hello World', function() {
2017-08-17 16:19:17 -05:00
it('says hello world', function() {
2017-08-17 13:47:39 -05:00
expect(helloWorld()).toEqual('Hello, World!');
});
2018-08-07 11:23:28 +01:00
});