odin-javascript-exercises/helloWorld/helloWorld.spec.js
Tatiana b2f2211321 Revert "Resolve merge conflicts"
This reverts commit 61338e0ca0, reversing
changes made to b9983073cc.
2021-05-08 11:27:13 -07:00

7 lines
181 B
JavaScript

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