odin-javascript-exercises/helloWorld/helloWorld.spec.js
Étienne Boisseau-Sierra 3a9251d55e Transform 'var' in 'let'
2018-08-07 11:25:16 +01:00

7 lines
No EOL
178 B
JavaScript

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