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

5 lines
136 B
JavaScript
Raw Normal View History

const helloWorld = require('./helloWorld');
2017-08-17 11:47:39 -07:00
2021-03-09 03:12:25 -08:00
test('says "Hello, World!"', function() {
expect(helloWorld()).toBe("Hello, World!");
2021-03-02 18:13:24 -08:00
});