odin-javascript-exercises/helloWorld/helloWorld.spec.js
Tatiana ffb5d83187 Revert "Added jest"
This reverts commit b8b23686e3.
2021-05-08 11:33:11 -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!');
});
});