odin-javascript-exercises/helloWorld/helloWorld.spec.js
2021-03-10 00:12:25 +13:00

5 lines
No EOL
136 B
JavaScript

const helloWorld = require('./helloWorld');
test('says "Hello, World!"', function() {
expect(helloWorld()).toBe("Hello, World!");
});